├── README.md └── apktool.deb /README.md: -------------------------------------------------------------------------------- 1 | # Termux-Apktool 2 | 3 | apktool for termux all deb 4 | 5 | install package git 6 | 7 | $ apt install git 8 | 9 | download the apktool deb file 10 | 11 | $ git clone https://github.com/1Tech-X/Termux-Apktool.git 12 | 13 | then change directory to Termux-apktool 14 | 15 | $ cd Termux-Apktool 16 | 17 | Now install apktool 18 | 19 | $ dpkg -i apktool.deb 20 | 21 | For decompile apk 22 | apktool d Appname.apk 23 | 24 | For Recompile 25 | apktool b yourfolder/ --output out.apk 26 | 27 | install package apksigner 28 | apt install apksigner 29 | 30 | sign apk with apksigner 31 | 32 | apksigner -p yourpassword keystore yourapk newapkname 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /apktool.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Tech-X/Termux-Apktool/d4333e6f33730b8daa9e4d49129a71c290b4ea58/apktool.deb --------------------------------------------------------------------------------