mirror of
https://github.com/revanced/Apktool.git
synced 2025-06-12 05:07:41 +02:00
Handle Dexguard key names
- Temporarily replace with dummy value names till research is completed - allows decode
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user