Skip to content

Instantly share code, notes, and snippets.

@maxsilver
Last active August 29, 2015 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maxsilver/2fcaed55642902f0ac0f to your computer and use it in GitHub Desktop.
Save maxsilver/2fcaed55642902f0ac0f to your computer and use it in GitHub Desktop.
Install System App on Rooted Android Device and other Android changes
# Assuming your in the root directory of an Android Studio project
adb remount
adb push app/build/outputs/apk/app-debug.apk /system/app
adb shell chmod 644 /system/app/app-debug.apk
adb reboot
# Modify system configuration
adb pull /system/build.prop
adb push /system/build.prop
# Fix read-only errors
mount -o remount rw /system
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment