I've developed an android application that works well, but when i try to publish in the Google Play Store, it gives me an error that says i have google play services version 6111000 and need to have google play services version 5100000 or lower.
I've found a similar problem here that already have a solution but its for Android Studio, and i am using Eclipse. So how can i do that in Eclipse?
Thanks
Google Play Services just finished the rollout of Google Play Services 6.1 today. You should update the Google Play Services SDK to the new version and try publishing again.
Related
I want to add firebase to my react-native project.
As the documentation says it needs a device running Google Play services 15.0.0 or later.
I have a device which has Google Play Services version 14.7.99 and it is the latest version for my device. (As i understood Google Play Services latest version differs from device to device)
So is there a way to use firebase in devices with Google Play Services version 14?
Thx in advance
As it quite clearly states in the documentation
A device running:
Android 4.1 (API level 14, Jelly Bean) or later
Google Play services 15.0.0 or later
If your device cannot run Google Play Services 15.0.0 or later then there is no way to get Firebase to run on that device.
I used to use old version of Google Play Services in my projects. But now I keep getting warnings when I upload my apps to Google Play. These warnings says that I have to update my Google Play Services.
I have the latest version of Google Play Services in SDK manager with Rev.49
In the last versions of Google Play Services, I can find the Google Play library in the following directory:
SDK --> /extras/google/google_play_services/libproject/google-play-services_lib/
But now there is no libproject/google-play-services_lib/. Where can I get the library?
Check out this answer: https://stackoverflow.com/a/37311511/8294916
Or the answer directly below it: https://stackoverflow.com/a/37356709/8294916
Hopefully you can migrate over to Android Studio, but if you're stuck with Eclipse because you're working on a legacy project, I feel for you! :(
It is very strange, I am very new and as per setup instructions, I need to install Google Play services from SDK Manager, I tried a lot and finally gave up.
I just downloaded the latest VERSION: 2.1.1.0 of SDK from https://developer.android.com/studio/index.html#downloads
See below.
Can you please help me how to install the Google Play services ?
Google Repository is all you need for Google Play Services and you have that installed.
Just installed a fresh Android Studio and Marshmallow Platform. I tried to run a GCM app and this happens.
Google Play services out of date. Requires 8487000 but found 8185470
Any ideas?
Thanks
Your phone hasn't auto-updated to Google Play Services 8.4 yet (it only has 8.1), and your app was compiled using Google Play Services 8.4.
Either change the version you are compiling with in the app/build.gradle to 8.1.0:
compile 'com.google.android.gms:play-services:8.1.0'
or wait for your phone to auto-update to the latest version.
You need to update Google Play Services application. You can use GoogleApiAvailability to obtain Intent for launching recover process.
I recently updated the android google sdk with the latest version of google play services library (7.5).
Since the update I cannot run my app on emulator : when I click sign in button a pop up appears saying that I need to install the latest version of google play games app.
Of course I'm using the latest google apis for the emulator image. What happens? Did I miss something?
It turns that now google play services is linked to google play games app. It seems that if you don't have the app installed you cannot run the game that uses google play services. The emulator of course come without the games app I have to manually install the apk and now it works again. :-o