mirror of
https://github.com/skylot/jadx.git
synced 2024-11-23 12:50:02 +00:00
fix(res): resolve declare-styleable atrributes
This commit is contained in:
parent
e1aa9f6de4
commit
7f317be325
@ -211,7 +211,7 @@ public class ManifestAttributes {
|
||||
MAttrType attrTyp;
|
||||
if (first.getRawValue().getData() == ValuesParser.ATTR_TYPE_FLAGS) {
|
||||
attrTyp = MAttrType.FLAG;
|
||||
} else if (first.getRawValue().getData() == ValuesParser.ATTR_TYPE_ENUM) {
|
||||
} else if (first.getRawValue().getData() == ValuesParser.ATTR_TYPE_ENUM || first.getRawValue().getData() == 65600) {
|
||||
attrTyp = MAttrType.ENUM;
|
||||
} else {
|
||||
continue;
|
||||
|
Loading…
Reference in New Issue
Block a user