Created
October 23, 2014 02:51
-
-
Save villadora/e7489b2639bb424a50b8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$adb shell | |
# change to root | |
su | |
# add read/write permission to /system | |
mount -o remount, rw /system | |
# copy | |
cat ApplicationName.apk > /system/app/ApplicationName.apk | |
# change permission of apk | |
chmod 644 ApplicationName.apk | |
# reboot device | |
reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment