Jared 2013. 4. 9. 01:47

adb push test.apk /sdcard/

adb shell

$su

$busybox cp /sdcard/test.apk /system/app/

$reboot

 

그냥 넣으면 용량이 커지므로

adb shell

su

mount -o remount /rw /system

cd /system/app

rm test.apk 한 후 busybox 진행하면 용량을 줄일 수 있음.