Important Notes:
- This works as long as you don't need to modify the AndroidManifest.xml. Changes to that require a new signature. (See signapk.jar.)
- Newer versions (>= 2.3.3) of apktool will fail to unpack and repack a framework-res.apk on Windows, so you need to do it in Linux.
- You should do a zipalign 4 on the result to align resources on 4-byte boundaries, which allows them to be accessed directly with mmap() and reduce the amount of RAM consumed when running the application.
Comment