mirror of
https://github.com/revanced/Apktool.git
synced 2025-06-12 13:17:43 +02:00
Fix flags being defined as references
This commit is contained in:
@ -41,6 +41,9 @@ public class ResFlagsAttr extends ResAttr {
|
||||
@Override
|
||||
public String convertToResXmlFormat(ResScalarValue value)
|
||||
throws AndrolibException {
|
||||
if(value instanceof ResReferenceValue) {
|
||||
return value.encodeAsResXml();
|
||||
}
|
||||
if (!(value instanceof ResIntValue)) {
|
||||
return super.convertToResXmlFormat(value);
|
||||
}
|
||||
|
Reference in New Issue
Block a user