The latest com.google.android.gms for google play services revision 6

╄→гoц情女王★ 提交于 2019-12-19 03:41:03

问题


I was running my Android Google Maps application using Google Play services revision 5 and it worked well...

I updated my Google Play services from revision 5 to revision 6 and now it won't run and produces this warning:

Google Play services out of date.  Requires 3027100 but found 3025110

Any idea where I can find the latest com.google.android.gms.apk file to meet the requirement?


回答1:


I did the same thing :(

Here is how to solve it by rolling back: Uninstall Google Play Services 6 then download Google Play Services 5 here http://venomvendor.blogspot.com/2012/03/android-sdk-extras-by-google-inc.html and put it under /extras/google/google-play-services

FYI I also need to install

adb install -r com.android.vending-1.apk

adb install -r com.google.android.gms-3025110-v3.0.25\ (583950-10).apk

for my Google Maps app to work on my emulator...

Rebuild your apk using Google Play Services 5.




回答2:


If you are running this on a real device then you would need to update the Google play services via the Google play store. This actually should be done automatically but you can speed up the process by doing it manually through the store.

If you are running this on a "modified" AVD(were you installed the Google play services manually). then you would need to install a new set of files.




回答3:


you can use adb pull, you can also use "Terminal" of any type and the "cat" command, and sd memory.

cd /data/app #or wherever..
cat com.google.android.gms-1.apk > /mnt/sdcard/GoogleSpywareBackupFile.apk

You can't merely use "cat" to install it, however. But you probably already know that, given how the question was asked.



来源:https://stackoverflow.com/questions/16039788/the-latest-com-google-android-gms-for-google-play-services-revision-6

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!