Changelog Apktool v2.2.2-git:
* Added Android 7.1 Resources (Issue 1349)
* Update aapt to android-7.1.1_r4.
* Upgrade to gradle 3.3
* Fixed NPE with styles that had a parent that didn’t exist. (Issue 1370)
* Fixed issue with TYPE_DYNAMIC_ATTRIBUTE treating improperly which affected Nougat based applications. (Issue 1382) / Thanks xpirt
* Fixed issue with APKs that have invalid characters. (Issue 885), (Issue 1389)
* Fixed issue with versioning vector images during build. (Issue 1384)
* Fixed issue with APKs that have invalid characters in filename. (Issue 1369)
* Fixed build issue where space was in build path. (Issue 1394)
* Fixed issue with APKs that have 3 non positional attributes. (Issue 1360)
* Fixed issue with APKs that require non-standard pkgId. (Issue 1119), (Issue 989), (Issue 1278), (Issue 1377), (Issue 1091) / Thanks peter23
* Fixed issue with APKs that used reserved words do and if. (Issue 1404)
Apktool is a tool for reverse engineering 3rd party, closed, binary Android apps. It can decode resources to nearly original form and rebuild them after making some modifications; it makes possible to debug smali code step by step. Also it makes working with app easier because of project-like files structure and automation of some repetitive tasks like building apk, etc.
It is NOT intended for piracy and other non-legal uses. It could be used for localizing, adding some features or support for custom platforms and other GOOD purposes. Just try to be fair with authors of an app, that you use and probably like.
Features:
+ Disassembling resources to nearly original form (including resources.arsc, classes.dex, 9.png. and XMLs)
+ Rebuilding decoded resources back to binary APK/JAR
+ Organizing and handling APKs that depend on framework resources
+ Smali Debugging (Removed in 2.1.0 in favor of IdeaSmali)
+ Helping with repetitive tasks
Requirements:
* JDK (7 or 8). No OpenJDK
* git
Usage & Download From git:
git clone git://github.com/iBotPeaches/Apktool.git && cd Apktool ./gradlew ./gradlew build fatJar ./gradlew build fatJar proguard cd brut.apktool/apktool-cli/build/libs/ java -jar apktool-2.2.2-dd4a20-SNAPSHOT-small.jar
Source: https://github.com/iBotPeaches | Our Post Before