mirror of
https://github.com/revanced/Apktool.git
synced 2025-01-08 19:16:09 +01:00
Sort framework ids before storing them in apktool.yml .
aapt command requires your to include frameworks in order.
This commit is contained in:
parent
61309bb533
commit
2ac33fd5e7
@ -208,6 +208,7 @@ public class ApkDecoder {
|
|||||||
for (ResPackage pkg : pkgs) {
|
for (ResPackage pkg : pkgs) {
|
||||||
ids[i++] = pkg.getId();
|
ids[i++] = pkg.getId();
|
||||||
}
|
}
|
||||||
|
Arrays.sort(ids);
|
||||||
|
|
||||||
Map<String, Object> uses = new LinkedHashMap<String, Object>();
|
Map<String, Object> uses = new LinkedHashMap<String, Object>();
|
||||||
uses.put("ids", ids);
|
uses.put("ids", ids);
|
||||||
|
Loading…
Reference in New Issue
Block a user