Here you will find an explanation on how to edit APK files.
You'll need:
Install the JRE and unpack the apktool1.3.2.tar.bz2 and the apktool-install-(your os)-....tar.bz2 in a directory of your choice.
Then copy the apk you want to edit into that directory too.
Now your ready to decode your apk. To do that you open your terminal, commandline, etc tool
and navigate to the folder where you unpacked apk-tool.
If you're there, you type
Code:
apktool d filename.apk
where filename is the name of the apk in the apktool directory you want to edit
and then press ENTER.
Now you should see something like this
Code:
C:\apk-tool>apktool d Shark+or+Die+1.0.0.apk
I: Baksmaling...
I: Loading resource table...
I: Decoding resources...
I: Loading resource table from file: C:\Users\benjy│G\apktool\framework\1.apk
I: Copying assets and libs...
and when the process finished successfully you can find a folder named after the apk in the apktool directory.
there you can find all the resources like images, xmls, etc which you can now edit.
After you finished editing the files, you have to rebuild the apk.
You do that by typing
Code:
apktool b foldername newfilename
where foldername is the name of the folder in the apktool directory you edited the files in
and newfilename is the name for the apk being generated
and then press ENTER.
After a short time you'll find the newfilename.apk in the apk-tool directory!
Bookmarks