ahytning wrote:
我自己也是自己中文化...(恕刪)
感謝ahytning大大

解出來的APK用R.E管理器丟到system/app
鬧鐘..好了XD

dingdingc wrote:
心有戚戚焉........(恕刪)
cache=/data/local/cache.img
# check for cache image
if [ ! -f $cache ]; then
# create a file 54.4MB
dd if=/dev/zero of=$cache bs=1024 count=55808
# create ext2 filesystem
mke2fs -F $cache
fi
# unmount the old one
umount /cache
# setup the loopback and mount
busybox losetup /dev/block/loop7 $cache改成
/system/xbin/busybox losetup /dev/block/loop7
busybox mount /dev/block/loop7 /cache改成
/system/xbin/busybox mount /dev/block/loop7 /cache
# fix the ownership and permissions
chown system.cache /cache改成
/system/xbin/busybox chown system.cache /cache
並加一行
/system/xbin/busybox chown 1000.2001 /cache
chmod 770 /cache改成
/system/xbin/busybox chmod 770 /cache