Recognized Themer - OP
Thanks Meter 4478
Posts: 8,918
Join Date: Sep 2010
Location: shaker heights-Ohio
|
decompiling and recompiling framework-res for ics
greetings
this is a basic tutorial on decompiling and recompiling framework-res for ics.
thanks to this thread here which posted the latest aapt and the idea to use two versions of apktool. more is needed though and there are some unnecessary actions so i am adding to this for the rezound.
download this file which contains two versions of apktool and the latest aapt
apktools
add the contents to your apktool folder. rename apktool 1.4.2 to just apktool
install your ics framework
apktool if framework-res.apk
apktool if com.htc.resourses.apk
you will see flag errors but disregard.
decompile framework-res
apktool d framework-res.apk <out>
again you will see flag errors but disregard.you will also see errors in values-hdpi and values- xdpi pointing to the drawables xml. i deleted both xmls to mod the battery percentage.
to recompile. rename apktool to apktool 1.4.2. rename apktool 1.4.3 to just apktool.
this is rather strange but this is what has worked. go to res/values/anims
change this
<anim name="htc_ime_decelerate_interpolator">@anim/zzz_htc_ime_decelerate_interpolator</anim>
to
<item type="anim" name="htc_ime_decelerate_interpolator">@anim/zzz_htc_ime_decelerate_interpolator</item>
then recompile.
apktool b <out>
the anims xml is rebuilt as before which is the strange part.
please post any questions or issues
|