remove or update Google play service on emulator

后端 未结 5 1972
心在旅途
心在旅途 2021-01-06 16:07

i programmed an android app which uses the google maps api v2. i want to test it on the emulator, but to show the map it has a little bit problems. i googled and found the a

5条回答
  •  暗喜
    暗喜 (楼主)
    2021-01-06 16:56

    Installing google service packages; gms and vending

    • Be sure that emulator started
    • Copy com.google.android.gms-19032013.apk and com.google.android.vending-19032013.apk files to < bundle root >\sdk\platform-tools from my blog.
    • Open command prompt and go to < bundel root >\sdk\platform-tools
    • then run command adb install com.google.android.gms-19032013.apk
    • then run command adb install com.android.vending-19032013.apk if it says already exits then run commands -adb uninstall com.android.vending -adb uninstall com.google.android.gms

    I had similar problems so I prepared step by step tutorial to show how you can use google map android v2 on emulator(android 4.2.2) have a look at to my blog: http://umut.tekguc.info/en/content/google-android-map-v2-step-step

提交回复
热议问题