티스토리 뷰
Here are the console commands for installing/removing system apps in android console emulator, very easy ; )
You must have ROOT and console emulator, I found this very helpful, so I hope it helps others as well...
__________________________________________________ ___________________________________
Install App to System:
Place APK file in the root folder on your sd card.
Open terminal and enter these commands:
# su
# mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system
# cat /sdcard/filename.apk > /system/app/filename.apk
# chmod 777 /system/app/filename.apk (READ 권한이 없으면 등록이 안됨)
# mount -o remount,ro -t yaffs2 /dev/block/mtdblock3 /system
# reboot
__________________________________________________ ___________________________________
Remove App from System (Be careful what you remove):
# mount -o remount,rw /system
# rm /system/app/Filename.apk
[Optional, to make read-only again]
# mount -o remount,r /system
[When Finished]
# reboot
__________________________________________________ ___________________________________
****KEY****
"#" means root command will follow
[Notes are in these brackets and aren't commands]
- ENJOY
ALSO...
'Android > 루팅' 카테고리의 다른 글
AOSP build (mm) (0) | 2018.01.25 |
---|---|
PRODUCT_MODEL (0) | 2013.04.25 |
Nexus 7에 Android Source 설치 (0) | 2013.03.20 |
우분투에 갤럭시 S3 설치 (0) | 2012.11.28 |