Skip to content

Commit

Permalink
version change
Browse files Browse the repository at this point in the history
  • Loading branch information
Konloch committed Apr 13, 2019
1 parent 668764d commit ad876e7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/the/bytecode/club/bytecodeviewer/BytecodeViewer.java
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
public class BytecodeViewer
{
/*per version*/
public static String version = "2.9.14";
public static String version = "2.9.15";
public static boolean previewCopy = false;
public static boolean fatJar = true; //could be automatic by checking if it's loaded a class named whatever for a library
/*the rest*/
Expand Down
1 change: 0 additions & 1 deletion src/the/bytecode/club/bytecodeviewer/Dex2Jar.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ public class Dex2Jar {
* @param output the output .jar file
*/
public static synchronized void dex2Jar(File input, File output) {
System.out.println("TEST: " + input.getAbsolutePath()+", " +output.getAbsolutePath());
try {
com.googlecode.dex2jar.tools.Dex2jarCmd.main(new String[]{input.getAbsolutePath()});
String realOutput = input.getName().replaceAll("\\.dex", "-dex2jar.jar").replaceAll("\\.apk", "-dex2jar.jar");
Expand Down

0 comments on commit ad876e7

Please sign in to comment.