mirror of
https://github.com/iBotPeaches/Apktool.git
synced 2024-11-27 14:30:38 +00:00
fix: support 0_resource_name_obfuscated
(#3067)
* fix: support `0_resource_name_obfuscated` * refactor: drop jdk9 for jdk8 logic
This commit is contained in:
parent
b83b58e8e8
commit
deb9dcf089
@ -20,6 +20,9 @@ import brut.androlib.AndrolibException;
|
||||
import brut.androlib.err.UndefinedResObjectException;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.Collections;
|
||||
import java.util.HashSet;
|
||||
import java.util.LinkedHashMap;
|
||||
import java.util.LinkedHashSet;
|
||||
import java.util.Map;
|
||||
@ -31,12 +34,15 @@ public class ResResSpec {
|
||||
private final ResPackage mPackage;
|
||||
private final ResTypeSpec mType;
|
||||
private final Map<ResConfigFlags, ResResource> mResources = new LinkedHashMap<>();
|
||||
private static final Set<String> EMPTY_RESOURCE_NAMES = Collections.unmodifiableSet(new HashSet<>(Arrays.asList(
|
||||
"0_resource_name_obfuscated",
|
||||
"(name removed)"
|
||||
)));
|
||||
|
||||
public ResResSpec(ResID id, String name, ResPackage pkg, ResTypeSpec type) {
|
||||
this.mId = id;
|
||||
String cleanName;
|
||||
|
||||
name = (("(name removed)".equals(name)) ? null : name);
|
||||
name = EMPTY_RESOURCE_NAMES.contains(name) ? null : name;
|
||||
|
||||
ResResSpec resResSpec = type.getResSpecUnsafe(name);
|
||||
if (resResSpec != null) {
|
||||
|
Loading…
Reference in New Issue
Block a user