This app won't run unless you update Google Play Services (via Bazaar)

后端 未结 12 1965
长情又很酷
长情又很酷 2020-11-22 03:58

I\'m testing out the new Google Maps API V2 for Android, and I\'m getting this message when the app launches:

\"

12条回答
  •  轮回少年
    2020-11-22 04:42

    I've created a (German) description how to get it working. You basically need an emulator with at least API level 9 and no Google APIs. Then you'll have to get the APKs from a rooted device:

    adb -d pull /data/app/com.android.vending-2.apk
    adb -d pull /data/app/com.google.android.gms-2.apk
    

    and install them in the emulator:

    adb -e install com.android.vending-2.apk
    adb -e install com.google.android.gms-2.apk
    

    You can even run the native Google Maps App, if you have an emulator with at least API level 14 and additionally install com.google.android.apps.maps-1.apk

    Have fun.

提交回复
热议问题