mirror of
https://github.com/revanced/Apktool.git
synced 2025-01-20 16:57:34 +01:00
greedy .dex finder is finding dex files in unknown folders
- which android can't load unless its in /root of apk
This commit is contained in:
parent
e7c1bcefe8
commit
76a940628f
@ -251,7 +251,7 @@ public class ApkDecoder {
|
||||
|
||||
public boolean hasMultipleSources() throws AndrolibException {
|
||||
try {
|
||||
Set<String> files = mApkFile.getDirectory().getFiles(true);
|
||||
Set<String> files = mApkFile.getDirectory().getFiles(false);
|
||||
for (String file : files) {
|
||||
if (file.endsWith(".dex")) {
|
||||
if (! file.equalsIgnoreCase("classes.dex")) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user