Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I keep getting this error. Have redownloaded and extracted the apktool.jar to the proper folder and have restarted the computer, makes no difference.
demented@Ishbu-T-Balsac:~/android-sdk-linux/platform-tools$ apktool d framework-res.apk
apktool: command not found
Any ideas?
Edit: I have downloaded the Linux files for this from here android-apktool - A tool for reverse engineering Android apk files - Google Project Hosting but no luck.
java -jar /path/to/apktool.jar d /path/to/framework-res.apk
RedBeansNRice said:I learned a lot from looking at the packages. How do you generate the binary code? Do you write the updater-binary in a text doc, then remove the extension? I want to learn this shit, lol. Thanks
set_perm(uid, gid, mode, "/path/to/file");
I'm familiar with linux and command line, I somehow just accidentally put a "." in the file name when I extracted it to the /platform-tools folder. Got it all sorted.Try:
You should probably familiarize yourself with Linux and the command line before attempting something like this.Code:java -jar /path/to/apktool.jar d /path/to/framework-res.apk
The binary is generated by compiling recovery (in this case CWM) for a specific device (in this case, the Admire), so don't worry about that. You need to be viewing the updater-script, the list of "commands" the updater-binary executes.
With the zip(s) I provided, you can just put any files you want in the system subfolder, and they will be copied over /system on the device (like the build.prop you want to include).
To change the permissions, see the updater-script, namely, the set_perm function, syntax is as follows:
Code:set_perm(uid, gid, mode, "/path/to/file");
Hey RedBeans,
Would there be a way to add an audio (wav, ogg or mp3) to the animation sequence?
Just wondering, as I like to add audio that fits the theme. Like I would add a staticy effect to the TV shutdown ani or something to that effect.