Delete built-in apps
Temporary modification method
adb shell setprop persist.sys.root_access 3
adb root
adb remount
adb shell rm -r system/app/APK_NAME/
adb shell rebootor
adb shell setprop persist.sys.root_access 3
adb root
adb remount
adb shell rm -r system/priv-app/APK_NAME/
adb shell rebootCode modification method
- If the application has source code, comment out the
include $(BUILD_PACKAGE)in theAndroid.mkfile of the application source code - If the application is an APK file and has
Android.mk, comment outinclude $(BUILD_PREBUILT)in theAndroid.mkfile

