mirror of
https://github.com/revanced/Apktool.git
synced 2025-01-10 20:15:52 +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)
|
v1.5.1 (TBA)
|
||||||
-Updated smali/baksmali to v1.4.0
|
-Updated smali/baksmali to v1.4.1
|
||||||
-Fixed reference-array problem (BurgerZ)
|
-Fixed reference-array problem (BurgerZ)
|
||||||
-Fixed bad spacing issue on Mac OS X
|
-Fixed bad spacing issue on Mac OS X
|
||||||
-Removed maven in favor of gradle
|
-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.
|
-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
|
-Fix –verbose mode to actually work
|
||||||
-Added SDK API 17 framework
|
-Added SDK API 17 framework
|
||||||
-Don’t decompile public.xml (have aapt regenerate it based on resources). - REMOVED
|
-Closed file-handler when writing frameworks to file system.
|
||||||
-Added -o / –original flag to retain system APK signature and inject contents into APK - DELAYED
|
|
||||||
|
|
||||||
v1.5.0 (Released September 2 – 2012 ) Codename : Pikmin
|
v1.5.0 (Released September 2 – 2012 ) Codename : Pikmin
|
||||||
-Fix for colours being decompiled with improper hex colours
|
-Fix for colours being decompiled with improper hex colours
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
# Apktool #
|
# Apktool #
|
||||||
|
|
||||||
Links
|
Links
|
||||||
- Wiki https://github.com/iBotPeaches/Apktool/wiki
|
- Wiki http://code.google.com/p/android-apktool/w/list
|
||||||
- Bug Reports https://github.com/iBotPeaches/Apktool/issues
|
- Bug Reports http://code.google.com/p/android-apktool/issues/list
|
||||||
- Changelog/Information http://connortumbleson.com/apktool-v1-4-5-a-tool-for-reverse-engineering-apk-files/
|
- Changelog/Information http://code.google.com/p/android-apktool/wiki/Changelog
|
||||||
- XDA Post http://forum.xda-developers.com/showthread.php?p=28366939
|
- XDA Post http://forum.xda-developers.com/showthread.php?p=28366939
|
||||||
|
|
||||||
|
@ -49,7 +49,7 @@ public class SmaliDecoder {
|
|||||||
baksmali.disassembleDexFile(mApkFile.getAbsolutePath(),
|
baksmali.disassembleDexFile(mApkFile.getAbsolutePath(),
|
||||||
new DexFile(mApkFile), false, mOutDir.getAbsolutePath(), null,
|
new DexFile(mApkFile), false, mOutDir.getAbsolutePath(), null,
|
||||||
null, null, false, true, true, mBakDeb, false, false,
|
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) {
|
} catch (IOException ex) {
|
||||||
throw new AndrolibException(ex);
|
throw new AndrolibException(ex);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user