mirror of
https://github.com/revanced/Apktool.git
synced 2024-11-11 23:19:23 +01:00
ResReferenceValue: omitting type in theme references only if it equals to "attr"
This commit is contained in:
parent
e520d13d6b
commit
add6fbc24d
@ -52,7 +52,8 @@ public class ResReferenceValue extends ResIntValue {
|
||||
return
|
||||
(mTheme ? '?' : '@') +
|
||||
(newId ? "+" : "") +
|
||||
spec.getFullName(mPackage, mTheme);
|
||||
spec.getFullName(mPackage,
|
||||
mTheme && spec.getType().getName().equals("attr"));
|
||||
}
|
||||
|
||||
public ResResSpec getReferent() throws AndrolibException {
|
||||
|
Loading…
Reference in New Issue
Block a user