parent
e6b2576b57
commit
79403f320f
3 changed files with 5 additions and 5 deletions
2
pom.xml
2
pom.xml
|
@ -237,7 +237,7 @@
|
|||
<dependency>
|
||||
<groupId>com.github.ThexXTURBOXx</groupId>
|
||||
<artifactId>dex2jar</artifactId>
|
||||
<version>v23</version>
|
||||
<version>v24</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.github.weisj</groupId>
|
||||
|
|
|
@ -62,8 +62,8 @@ public class SmaliAssembler extends InternalCompiler
|
|||
}
|
||||
|
||||
try {
|
||||
com.googlecode.d2j.smali.SmaliCmd.main(new String[]{tempSmaliFolder.getAbsolutePath(),
|
||||
"-o", tempDex.getAbsolutePath()});
|
||||
com.googlecode.d2j.smali.SmaliCmd.main(tempSmaliFolder.getAbsolutePath(),
|
||||
"-o", tempDex.getAbsolutePath());
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
//BytecodeViewer.handleException(e);
|
||||
|
|
|
@ -73,8 +73,8 @@ public class SmaliDisassembler extends InternalDecompiler
|
|||
Dex2Jar.saveAsDex(tempClass, tempDex, true);
|
||||
|
||||
try {
|
||||
com.googlecode.d2j.smali.BaksmaliCmd.main(new String[]{tempDex.getAbsolutePath(),
|
||||
"-o", tempDexOut.getAbsolutePath()});
|
||||
com.googlecode.d2j.smali.BaksmaliCmd.main(tempDex.getAbsolutePath(),
|
||||
"-o", tempDexOut.getAbsolutePath());
|
||||
} catch (Exception e) {
|
||||
StringWriter sw = new StringWriter();
|
||||
e.printStackTrace(new PrintWriter(sw));
|
||||
|
|
Loading…
Reference in a new issue