Patching APKs
After decompiling the code, you can change code and build the app again to patch the APK, and make it do different things
Decompiling
$ apktool d -f -r app.apk -o app/Rebuilding
$ apktool b -f app/
I: Using Apktool 2.4.0-dirty
I: Smaling smali folder into classes.dex...
I: Copying raw resources...
I: Copying libs... (/lib)
I: Copying libs... (/kotlin)
I: Building apk file...
I: Copying unknown files/dir...
I: Built apk...Signing
Last updated