mirror of
https://github.com/revanced/Apktool.git
synced 2024-12-12 13:57:46 +01:00
adds support for ignoring "com.lge"
-- fixes issue 630
This commit is contained in:
parent
172f3272d2
commit
b53101f69e
1
CHANGES
1
CHANGES
@ -38,6 +38,7 @@ v2.0.0 (TBA)
|
||||
-Fixed (issue #606) - Fixed unknown files being ignored when -r is used.
|
||||
-Fixed (issue #609) - Fixed handling renamed manifests with ("android", "com.htc" and "miui").
|
||||
-Fixed (issue #626) - Fixed handling strange characters with unknown files.
|
||||
-Fixed (issue #630) - Fixed handling renamed manifests with ("com.lge")
|
||||
-Fixed issue with non-URI standard characters in apk name (Thanks rover12421)
|
||||
-Added output to list Apktool version to help debugging.
|
||||
-Updated known bytes for configurations to 38 (from addition of layout direction)
|
||||
|
@ -855,7 +855,7 @@ final public class AndrolibResources {
|
||||
private File mAaptBinary = null;
|
||||
|
||||
private final static String[] IGNORED_PACKAGES = new String[] {
|
||||
"android", "com.htc", "miui" };
|
||||
"android", "com.htc", "miui", "com.lge" };
|
||||
|
||||
private final static String[] ALLOWED_PACKAGES = new String[] {
|
||||
"com.miui" };
|
||||
|
Loading…
Reference in New Issue
Block a user