├── README.md └── apktool_2.3.4_all.deb /README.md: -------------------------------------------------------------------------------- 1 | # Termux-Apktool 2 | 3 | The original file 4 | https://github.com/iBotPeaches/Apktool 5 | 6 | 7 | Install 8 | 9 | ```bash 10 | git clone https://github.com/Lexiie/Termux-Apktool 11 | cd Termux-Apktool 12 | dpkg -i apktool_2.3.4_all.deb 13 | ``` 14 | 15 | Decompile 16 | 17 | ```bash 18 | apktool d yourapk 19 | ``` 20 | 21 | Recompile 22 | 23 | ```bash 24 | apktool b yourfolder/ --output out.apk 25 | ``` 26 | 27 | Sign use apksigner 28 | 29 | ```bash 30 | pkg install apksigner 31 | apksigner -p yourpassword keystore yourapk newapkname 32 | ``` -------------------------------------------------------------------------------- /apktool_2.3.4_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lexiie/Termux-Apktool/01858044f6c7197d1c989023f10edf1a44dc377e/apktool_2.3.4_all.deb --------------------------------------------------------------------------------