mirror of
https://github.com/revanced/Apktool.git
synced 2025-02-11 11:26:48 +01:00
Handle Dexguard key names
- Temporarily replace with dummy value names till research is completed - allows decode
This commit is contained in:
parent
a8a9c40a7b
commit
f9323943db
@ -33,7 +33,7 @@ public class ResResSpec {
|
||||
|
||||
public ResResSpec(ResID id, String name, ResPackage pkg, ResTypeSpec type) {
|
||||
this.mId = id;
|
||||
this.mName = name;
|
||||
this.mName = (name.isEmpty() ? ("APKTOOL_DUMMYVAL_" + id.toString()) : name);
|
||||
this.mPackage = pkg;
|
||||
this.mType = type;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user