android emulator-替换系统应用程序

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android emulator-替换系统应用程序相关的知识,希望对你有一定的参考价值。

system apps privilege does not permit normal uninstall. File mgrs 'Astro' with root may be used in lieu of this .
get the mount privs that u need then chmod dirs as needed and rm all the data ... rm the apk. check devices with a 'mount' prior the specific mounts in the thread
  1. adb shell
  2. mount -o remount,rw -t yaffs2 /dev/block/mtdblock0 /system
  3. mount -o remount,rw -t yaffs2 /dev/block/mtdblock1 /data
  4. rm /system/app/MyAppName.apk
  5. rm -rf /data/data/${package}/
  6. mount -o remount,ro -t yaffs2 /dev/block/mtdblock0 /system
  7. mount -o remount,ro -t yaffs2 /dev/block/mtdblock1 /data
  8. pm uninstall ${package}
  9. exit

以上是关于android emulator-替换系统应用程序的主要内容,如果未能解决你的问题,请参考以下文章