Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Commit b934e72

Browse files
committed
added custom dex condition + next version
1 parent 4d5bdad commit b934e72

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

ClassySharkWS/src/com/google/classyshark/Version.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@
2222
public class Version {
2323

2424
public static final int MAJOR = 6;
25-
public static final int MINOR = 6;
25+
public static final int MINOR = 7;
2626
}

ClassySharkWS/src/com/google/classyshark/silverghost/SilverGhostFacade.java

+4
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,10 @@ public static boolean isCustomMultiDex(File archiveFile) {
203203
}
204204
}
205205

206+
if(allClassNames.contains("classes1.dex")) {
207+
return true;
208+
}
209+
206210
for (String classEntry : allDexNames) {
207211
if (!classEntry.startsWith("classes")) {
208212
return true;

0 commit comments

Comments
 (0)