mirror of
https://github.com/revanced/Apktool.git
synced 2025-01-10 12:06:05 +01:00
Updatings links & documentation and SmaliDecoder fix
This commit is contained in:
parent
3fdf9ec09d
commit
a7d7458ffc
5
CHANGES
5
CHANGES
@ -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 JesusFreke’s smali) into one repo.
|
||||
-Fix –verbose mode to actually work
|
||||
-Added SDK API 17 framework
|
||||
-Don’t 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
|
||||
|
@ -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
|
||||
|
||||
|
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user