If you want to modify android apps then you need to first decompile .apk then only you can modify apps content .
so in this guide i will tell us you how you can modify any android app component.
( THIS GUIDE IS ONLY FOR WINDOWS USERS)
HERE WE GO.....
STEP 1- Install JAVA - Go HERE .
STEP 2- Download Apktool ( Package)
STEP 3- Using apktool for decompiling .apk file
1-Firstly extract the above downloaded apktool.zip file to your C drive.
2-Now copy the .apk file which you want to decompile in apktool folder.
3-Now open cmd.exe and type :
example if my .apk file name is torch.apk then i will type : apktool d torch.apk
4-process will start and your .apk file will be decompressed and you will see a folder named the .apk which you want decompile .
5- open the folder and now you can customize the app according to you.
6- after modifying apk again open cmd and type :
example in my case name of folder is torch so my code will look like : apktool b torch
process will start and compiling will start
7-The final modded app will be in the dist folder located inside the original app folder created by apktool.
8- final step is to sign the apk, for that copy the apk file inside Dist folder to your phone and download zipsigner.apk and with help of this sign the copied apk .
9- your modified apk is ready to be installed .
so in this guide i will tell us you how you can modify any android app component.
( THIS GUIDE IS ONLY FOR WINDOWS USERS)
HERE WE GO.....
STEP 1- Install JAVA - Go HERE .
STEP 2- Download Apktool ( Package)
STEP 3- Using apktool for decompiling .apk file
1-Firstly extract the above downloaded apktool.zip file to your C drive.
2-Now copy the .apk file which you want to decompile in apktool folder.
3-Now open cmd.exe and type :
apktool d name-of-the-app .apk
example if my .apk file name is torch.apk then i will type : apktool d torch.apk
4-process will start and your .apk file will be decompressed and you will see a folder named the .apk which you want decompile .
5- open the folder and now you can customize the app according to you.
6- after modifying apk again open cmd and type :
apktool b name-of-the-app-folder
example in my case name of folder is torch so my code will look like : apktool b torch
process will start and compiling will start
7-The final modded app will be in the dist folder located inside the original app folder created by apktool.
8- final step is to sign the apk, for that copy the apk file inside Dist folder to your phone and download zipsigner.apk and with help of this sign the copied apk .
9- your modified apk is ready to be installed .
0 comments:
Post a Comment