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

Commit

Permalink
added custom dex condition + next version
Browse files Browse the repository at this point in the history
  • Loading branch information
borisf committed Jul 7, 2016
1 parent 4d5bdad commit b934e72
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ClassySharkWS/src/com/google/classyshark/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@
public class Version {

public static final int MAJOR = 6;
public static final int MINOR = 6;
public static final int MINOR = 7;
}
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,10 @@ public static boolean isCustomMultiDex(File archiveFile) {
}
}

if(allClassNames.contains("classes1.dex")) {
return true;
}

for (String classEntry : allDexNames) {
if (!classEntry.startsWith("classes")) {
return true;
Expand Down

0 comments on commit b934e72

Please sign in to comment.