How-to convert an App to a System App
Prequisites:
- root access
adbready to use (i.e., the Android SDK installed)
- Obtain the
.apkfile of the app you want to make a system app - Push the
.apkfile to the device:adb push my-app.apk /sdcard/ Mount
/system/read-writeadb shell su mount -o rw,remount /system
Place the
.apkfile in the correct directory. This is/system/app/for Android 4.2 and lower, and/system/priv-app/for Android 4.3 and higher. The further steps will asume we are on Android 4.4 and therefore usepriv-appadb shell su cd /sdcard mv my-app.apk /system/priv-app chmod 644 /system/priv-app/my-app.apk
- Reboot the device:
adb reboot