Reputation: 121
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?
Upvotes: 4
Views: 18647
Reputation: 11
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.
Upvotes: 0
Reputation: 258
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.
Upvotes: 8
Reputation: 41099
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.
Upvotes: 0