mirror of
https://github.com/revanced/Apktool.git
synced 2025-05-01 06:34:25 +02: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
|
return
|
||||||
(mTheme ? '?' : '@') +
|
(mTheme ? '?' : '@') +
|
||||||
(newId ? "+" : "") +
|
(newId ? "+" : "") +
|
||||||
spec.getFullName(mPackage, mTheme);
|
spec.getFullName(mPackage,
|
||||||
|
mTheme && spec.getType().getName().equals("attr"));
|
||||||
}
|
}
|
||||||
|
|
||||||
public ResResSpec getReferent() throws AndrolibException {
|
public ResResSpec getReferent() throws AndrolibException {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user