Updatings links & documentation and SmaliDecoder fix

This commit is contained in:
Connor Tumbleson 2012-11-19 07:44:55 -06:00
parent 3fdf9ec09d
commit a7d7458ffc
3 changed files with 6 additions and 7 deletions

View File

@ -1,5 +1,5 @@
v1.5.1 (TBA)
-Updated smali/baksmali to v1.4.0
-Updated smali/baksmali to v1.4.1
-Fixed reference-array problem (BurgerZ)
-Fixed bad spacing issue on Mac OS X
-Removed maven in favor of gradle
@ -7,8 +7,7 @@ v1.5.1 (TBA)
-Merged brut.j.dir,brut.j.common,brut.j.util & brut.apktool.smali (Fork of JesusFrekes smali) into one repo.
-Fix verbose mode to actually work
-Added SDK API 17 framework
-Dont decompile public.xml (have aapt regenerate it based on resources). - REMOVED
-Added -o / original flag to retain system APK signature and inject contents into APK - DELAYED
-Closed file-handler when writing frameworks to file system.
v1.5.0 (Released September 2 2012 ) Codename : Pikmin
-Fix for colours being decompiled with improper hex colours

View File

@ -1,8 +1,8 @@
# Apktool #
Links
- Wiki https://github.com/iBotPeaches/Apktool/wiki
- Bug Reports https://github.com/iBotPeaches/Apktool/issues
- Changelog/Information http://connortumbleson.com/apktool-v1-4-5-a-tool-for-reverse-engineering-apk-files/
- Wiki http://code.google.com/p/android-apktool/w/list
- Bug Reports http://code.google.com/p/android-apktool/issues/list
- Changelog/Information http://code.google.com/p/android-apktool/wiki/Changelog
- XDA Post http://forum.xda-developers.com/showthread.php?p=28366939

View File

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