mirror of
https://github.com/revanced/Apktool.git
synced 2024-11-06 12:47:03 +01:00
Moved resources.arsc to resource file: /brut/androlib/android-framework.jar .
This commit is contained in:
parent
c95742f66f
commit
9b781a22fa
BIN
src/brut/androlib/android-framework.jar
Normal file
BIN
src/brut/androlib/android-framework.jar
Normal file
Binary file not shown.
@ -201,9 +201,12 @@ final public class AndrolibResources {
|
||||
}
|
||||
}
|
||||
|
||||
private File getAndroidResourcesFile() {
|
||||
return new File(getClass().getProtectionDomain().getCodeSource()
|
||||
.getLocation().getPath());
|
||||
private File getAndroidResourcesFile() throws AndrolibException {
|
||||
try {
|
||||
return Jar.getResourceAsFile("/brut/androlib/android-framework.jar");
|
||||
} catch (BrutException ex) {
|
||||
throw new AndrolibException(ex);
|
||||
}
|
||||
}
|
||||
|
||||
public static String escapeForResXml(String value) {
|
||||
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user