Skip to content

Instantly share code, notes, and snippets.

@tonetheman
Created May 4, 2012 15:14
Show Gist options
  • Save tonetheman/2595415 to your computer and use it in GitHub Desktop.
Save tonetheman/2595415 to your computer and use it in GitHub Desktop.
install google play on android emulator
# got this from this page
# put this here so i would not lose it!
# http://www.piotrbuda.eu/2012/05/installing-google-play-on-android.html
# command to start emulator
# the important thing is the 200 need more space on system
emulator -avd am -partition-size 200 -no-audio -no-boot-anim
# now the loading of the apks
adb shell mount -o remount,rw -t yaffs2 /dev/block/mtdblock0 /system
adb shell chmod 777 /system/app
adb push GoogleLoginService.apk /system/app/.
adb push GoogleServicesFramework.apk /system/app/.
adb push Vending.apk /system/app/.
adb shell rm /system/app/SdkSetup*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment