Disclaimer
Please note that the information provided here is intended for educational and research purposes only. Always respect the rights of software developers and abide by the terms of service of the applications you modify.
Introduction
The discussion provided does not relate to "cracking" or "pirating" applications which is often associated with "Modded APKs", but rather several modifications and optimizations to APKs, mainly aiming to improve performance and reduce file size. This includes deletion of certain packages from APKs, such as analytics, crashlytics, trackers etc. This requires removing all invokes and reliances on the packages from the code of the APK.
Tools
Here are some tools that can be used for APK modification:
-
MT Manager - Extremely useful file manager, designed with a major focus on APKs. A paid version is available, but the free version is sufficient for most necessary functions, and alternative tools are available for some. The official website is in Chinese, and the app is also uploaded on APKCombo by the developer, Lin Jin Bin. Useful features include:
- Quick extraction of APKs
- DEX file editor with features such as:
- Quick navigation between methods and classes
- Quick search and replace in smali files, regex supported
- Search strings in smali quickly
- Quickly clear a method, also minimizing registers for optimization
- Quickly clear all debug info (reduces size)
- Minification of resources
- Obfuscation of resources (this effectively saves space; but has a chance to break some apps)
- Optimization of APKs
- Automatically signing APKs after modification
-
Apktool - A tool for reverse engineering Android APK files. It can decompile and recompile APKs, allowing you to modify the code and resources of an app. It is a command-line tool and requires Java to be installed on your system. Some of its features include:
- Decoding and encoding of APK resources
- Decompiling and recompiling APKs
- Extracting and injecting resources
- Debugging and analyzing APK files
-
JADX - Another tool for decompiling and analyzing Android APK files. It provides a graphical interface and allows you to browse the source code of an app. Some features of JADX include:
- Decompiling and analyzing APK files
- Browsing source code
- Searching for specific classes or methods
- Inspecting resources and assets
- Exporting source code
- Apktool M - Not to be confused with the Java program apktool, APKtool M is an app with many features, including:
- Fast decompilation of APK files
- Several optimizations for APKs. UltraZip is most effective; I have noticed it breaks media pickers in apps.
- Antisplit - converting split .apks, .xapk, .apkm files to .apk
- Integration with MPatcher, another tool by the same developer, focusing on scripts to patch APKs in several ways, such as:
- Optimizing images (it uses optipng and pngquant)
- Disabling (not removing) analytics
- Deleting languages except default language
- Deleting files that are unnecessary for the current device; this includes files for different CPU architectures or display sizes.
- Deleting some types of unused smali files
- Quickly separating APK with multiple to versions with individual libs to reduce size
- Support for writing custom scripts
- APK Editor - A very old app, maintained by WSTprojects. Supports decompilation and custom patches, but is quite slow nowadays. It is still fast for quickly modifying XML files, which is a paid feature in MT Manager and requires fully decompiling in APKTool M.
- AntiSplit M - An open source app worked on by me to convert split APKs to a single APK.
- AXML Editor - Open source editor I worked on to edit Android binary XML files (AndroidManifest.xml and layout XML files).
- InjectDocumentsProvider - Access /Android/data and all data files of an Android app without any permissions by patching its APK file. This is a feature in MT Manager. Due to the lack of existing open source tools to utilize this, I created an app and Java program to inject it.
- Package Removal Helper - a website tool to assist in the removal of packages (like trackers) from an APK by allowing input of the names of packages to be removed, and outputting a regular expression that can be used to search for the usage of those packages in the APK's code.