mirror of
https://github.com/revanced/Apktool.git
synced 2025-05-17 05:17:06 +02:00
fix: properly record compression of non-main classes.dex files (#3584)
This commit is contained in:
parent
6436e7c090
commit
a2df2541e7
@ -275,6 +275,10 @@ public class ApkDecoder {
|
|||||||
|
|
||||||
private boolean isAPKFileNames(String file) {
|
private boolean isAPKFileNames(String file) {
|
||||||
for (String apkFile : APK_STANDARD_ALL_FILENAMES) {
|
for (String apkFile : APK_STANDARD_ALL_FILENAMES) {
|
||||||
|
if (file.startsWith("classes") && file.endsWith(".dex")) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
if (apkFile.equals(file) || file.startsWith(apkFile + "/")) {
|
if (apkFile.equals(file) || file.startsWith(apkFile + "/")) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user