From a7d7458ffc9f1b2caf700c4db45a17ca48b03f12 Mon Sep 17 00:00:00 2001 From: Connor Tumbleson Date: Mon, 19 Nov 2012 07:44:55 -0600 Subject: [PATCH] Updatings links & documentation and SmaliDecoder fix --- CHANGES | 5 ++--- README.md | 6 +++--- .../src/main/java/brut/androlib/src/SmaliDecoder.java | 2 +- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/CHANGES b/CHANGES index 354339b4..2979cbc4 100644 --- a/CHANGES +++ b/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 diff --git a/README.md b/README.md index a92fa85d..e3f52771 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/brut.apktool/apktool-lib/src/main/java/brut/androlib/src/SmaliDecoder.java b/brut.apktool/apktool-lib/src/main/java/brut/androlib/src/SmaliDecoder.java index 134fb885..98ed63e9 100644 --- a/brut.apktool/apktool-lib/src/main/java/brut/androlib/src/SmaliDecoder.java +++ b/brut.apktool/apktool-lib/src/main/java/brut/androlib/src/SmaliDecoder.java @@ -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); }