Tools Required :
- APKTool to decompile and compile APK files
- SignApk to sign the recompiled APK files
I have uploaded the above files into a ZIP file. You can download it from HERE
Thanks to those guys who made APKTool and SignAPK. Actually I referred to Xda forum for the above tools. After downloading the files, follow the steps below.
Thanks to those guys who made APKTool and SignAPK. Actually I referred to Xda forum for the above tools. After downloading the files, follow the steps below.
Instructions :
1. Extract the files and open command prompt in the extracted folder. There will be four folders.
files , compiled, decompiled, and signed.
Files > Place your working APKs here
Decompiled > The files after Decompiling your APK will go here. You can edit the files after decompiling.
Compiled > After editing and recompiling, the unsigned APK file goes here. You cant use it before signing.
Signed > Finished APK, after signing goes here. You can install the APK after signing.
2. Place the working APK into the Files folder and type the following command in the command prompt:
(Here I'm taking hill climb racing as an example. You can take any game)
apktool d files/hill.apk decompiled/hill
The command is very simple. It says apktool to decompile the file which is situated infiles/hill.apk and save the decompiled files to decompiled/hill folder (d is the command for decompile)
now edit in folder decompiled............you wanted.
3. For recompiling, open command prompt and type the following command
I think there is no need of an explanation here. Command b is for Binding, I think.
4. Now the final step. To sign the APK file, you can use the SignApk (Provided in the Zip file). Type the following command
apktool b decompiled/hill compiled/hill.apk
I think there is no need of an explanation here. Command b is for Binding, I think.
4. Now the final step. To sign the APK file, you can use the SignApk (Provided in the Zip file). Type the following command
java -jar signapk.jar certificate.pem key.pk8 compiled/hill.apk signed/hill.apk
5.Now transfer it to the Phone and Test it. Enjoyyy!
After decompiling, you get the java files as .smali files. It is very difficult to edit it. If you try, you can do much more.
Here is the screenshot of what I have done
..............................................................................................................................................................
If you want, you can download the APK which I have modified (as in the screenshot) below
DOWNLOAD
- 03:53
- 8 Comments