Fix recompile of miui.apk by allowing package renaming

This old issue prevented the package to be renamed from com.miui.core to miui, making it impossible to recompile, as all attributes are refefred to as miui:*/*. This fixes it permanently.
This commit is contained in:
Igor Eisberg 2019-03-03 15:14:07 +02:00 committed by Connor Tumbleson
parent 3ee39c988a
commit 8084762274
No known key found for this signature in database
GPG Key ID: C3CC0A201EC7DA75

View File

@ -1014,9 +1014,8 @@ final public class AndrolibResources {
private boolean mSparseResources = false;
private final static String[] IGNORED_PACKAGES = new String[] {
"android", "com.htc", "miui", "com.lge", "com.lge.internal", "yi", "com.miui.core", "flyme",
"air.com.adobe.appentry", "FFFFFFFFFFFFFFFFFFFFFF" };
"android", "com.htc", "com.lge", "com.lge.internal", "yi", "flyme", "air.com.adobe.appentry",
"FFFFFFFFFFFFFFFFFFFFFF" };
private final static String[] ALLOWED_PACKAGES = new String[] {
"com.miui" };
private final static String[] ALLOWED_PACKAGES = new String[] { };
}