alexs77

Fix Google+ Map not showing

Jul 11th, 2013
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.76 KB | None | 0 0
  1. # Thanks to +Steve Jones
  2. # https://plus.google.com/u/0/117910928994532443899/posts/6jfdjeWDxAb
  3. # For me, it was ….apps.plus-2; for him, it was ….apps.plus-1
  4. # And now I too have a map - http://m5m.mr.sl.pt - Yeah ;)
  5.  
  6. # Pipe all commands at once to adb
  7. echo "su -
  8. mount -orw,remount /system
  9. busybox mv /data/app/com.google.android.apps.plus*.apk /system/app/
  10. busybox mv /data/app-lib/com.google.android.apps.plus*/* /system/lib/
  11. reboot" | adb shell
  12.  
  13. # Or do it manually ;)
  14. a@ask-home:~$ adb shell
  15.  
  16. shell@android:/ $ su -
  17. root@android:/ # mount -orw,remount /system
  18. root@android:/ # busybox mv /data/app/com.google.android.apps.plus*.apk /system/app/
  19. root@android:/ # busybox mv /data/app-lib/com.google.android.apps.plus*/* /system/lib/
  20. root@android:/ # reboot
Add Comment
Please, Sign In to add comment