Skip to content

Instantly share code, notes, and snippets.

@lpicanco
Created August 18, 2015 13:40
Show Gist options
  • Save lpicanco/f7f536ba88338973402a to your computer and use it in GitHub Desktop.
Save lpicanco/f7f536ba88338973402a to your computer and use it in GitHub Desktop.
Install app as system app in Android via adb
adb start-server
adb remount
adb push app.apk /system/priv-app/app.apk
adb shell chmod 644 /system/app-priv/app.apk
adb reboot
@j-romchain
Copy link

Does this work without root?

@atulkumar6556
Copy link

no

@scorninpc
Copy link

adb shell chmod 644 /system/app-priv/app.apk
is
adb shell chmod 644 /system/priv-app/app.apk

anyway, no error, but now work. when restart, no app installed =/

@blue-pine
Copy link

adb shell chmod 644 /system/app-priv/app.apk is adb shell chmod 644 /system/priv-app/app.apk

anyway, no error, but now work. when restart, no app installed =/

Neither this nor any other method worked on realme 5i . Help needed please. Anyone ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment