went back to using DIFFPRE, as it was merged into brut.apktool.smali

This commit is contained in:
Connor Tumbleson 2012-08-30 15:40:23 -05:00
parent 8c93331ab6
commit 546eabcb3a
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@
<descriptors>
<descriptor>src/main/assembly/jar-with-deps.xml</descriptor>
</descriptors>
<archive>soc
<archive>
<manifest>
<mainClass>brut.apktool.Main</mainClass>
</manifest>

View File

@ -44,7 +44,7 @@ public class SmaliDecoder {
baksmali.disassembleDexFile(mApkFile.getAbsolutePath(),
new DexFile(mApkFile), false, mOutDir.getAbsolutePath(), null,
null, null, false, true, true, true, false, false,
mDebug ? main.FULLMERGE : 0, false, false, null);
mDebug ? main.DIFFPRE : 0, false, false, null);
} catch (IOException ex) {
throw new AndrolibException(ex);
}