Istallation:
Copy .zip file to sdcard, boot into recovery, flash .zip
Option 1
Root Explorer:
Extract to sdcard
Copy the files to /system and set the permisions "rw-r--r--"
SystemUI.apk - Move and replace to /system/app
SemcGenericUxpRes.apk - Move and replace to /system/framework
framework-res.apk - Move and replace to /system/framework
reboot when done.
Option 2
with terminal from phone:
Extract the files to the root of sdcard, then typ in this code
Code:
su
mount -o remount,rw -t yaffs2 /dev/block/mtdblock0 /system
dd if=/sdcard/SystemUI.apk of=/system/app/SystemUI.apk
dd if=/sdcard/SemcGenericUxpRes.apk of=/system/framework/SemcGenericUxpRes.apk
dd if=/sdcard/framework-res.apk of=/system/framework/framework-res.apk
reboot
Option 3
with adb from pc:
Code:
adb push SystemUI.apk /sdcard/tmp/SystemUI.apk
adb push SemcGenericUxpRes.apk /sdcard/tmp/SemcGenericUxpRes.apk
adb push framework-res.apk /sdcard/tmp/framework-res.apk
adb shell
su
mount -o remount,rw -t yaffs2 /dev/block/mtdblock0 /system
dd if=/sdcard/tmp/SystemUI.apk of=/system/app/SystemUI.apk
dd if=/sdcard/tmp/SemcGenericUxpRes.apk of=/system/framework/SemcGenericUxpRes.apk
dd if=/sdcard/tmp/framework-res.apk of=/system/framework/framework-res.apk
reboot
|