I got a error in the Android Studio, I'm trying install the google play services because I want work with google maps, but it's throwing a error:
Downloading Google Play services, revision 29 Failed to create
directory C:\Program Files (x86)\MySQL\MySQL Server 5.7\temp Done.
Nothing was installed.
Somebody have some knowledge about this?
Thank You.
Did you add play services dependencies in your apps gradle? compile 'com.google.android.gms:play-services:8.4.0' ... also refere here to set up google play services https://developers.google.com/android/guides/setup#add_google_play_services_to_your_project
Related
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.
And it's aparently not.
I've just compiled an APP with the latest google play services, which I've set on gradle as:
compile 'com.google.android.gms:play-services:+'
But when I open my APP, there's a huge warning.
And in LogCat:
W/GooglePlayServicesUtil﹕ Google Play services out of date. Requires 5208000 but found 5089070
If I open google play (pressing Actualizar button), I can see my Google Play services are totally updated.
This is happening on a genymotion emulator aswell as on a nexus 5 device.
I've tried things like:
compile 'com.google.android.gms:play-services:5.2.8'
However it complains:
Error:Could not find com.google.android.gms:play-services:5.2.8.
Required by:
:mobile:unspecified > :BaseGameUtils:unspecified
Any tips?
Fixed with
compile 'com.google.android.gms:play-services:5.0.89'
I've found out is that my Android Studio is downloading some version of google play services, which is not yet released on Google Play. That means that noone have that latest APK on their devices. So setting gradle to use an older version, will make the trick
Fixed with
For Gradle:
compile 'com.google.android.gms:play-services:5.0.77'
For Eclipse:
Add as library: https://dl-ssl.google.com/android/repository/google_play_services_5077000_r18.zip
If above did not work, try to use older playstore service version of android playstore client.
https://dl-ssl.google.com/android/repository/google_play_services_4132530_r14.zip
https://dl-ssl.google.com/android/repository/google_play_services_4242030_r15.zip
https://dl-ssl.google.com/android/repository/google_play_services_4323030_r16.zip
https://dl-ssl.google.com/android/repository/google_play_services_5077000_r18.zip
https://dl-ssl.google.com/android/repository/google_play_services_5089000_r19.zip
https://dl-ssl.google.com/android/repository/google_play_services_6171000_r21.zip
On LogCat i got warning "Google Play services out of date. Requires 4323000 but found 3136110".
i have tried all the solutions and use the apk files suggested on stackoverflow . But still got this message. please Help
I think you have to update google play service library, Open your SDK manager and
You will get screen like this, select google play services from extras just check mark it and select install packages and update it.
I think i got the same message yesterday, but my emulator updated Google play services via play store.
I had to install 'google play services' on my emulator via a zip file, I was following this guide: https://github.com/thecodepath/android_guides/wiki/Google-Maps-Fragment-Guide
I am work with android studio with google map integration so i want require google play services.
I follow manny Blog and tutorial for integration google play services in android studio but not getting success.
I have latest grandle base android studio with google play services which is download from Sdk manager->Extras.
I am edit my buid.gradle file with
dependencies {
compile 'com.google.android.gms:play-services:4.0.+'
}
As per blogs says but not integrating,I am tied from last 4-5 days,Please give me proper solution and guild line.
Error:
Gradle invocation completed successfully with 1 error(s) in 3 sec
Points needs to be taken care while using Google Play Services :
You must have Google Repository Installed in your SDK not only Google Play Services in order to use Google Play Services as local repository. You can install it for SDK manager > Extras > Google Repository .
Check this
Import Google Play Services library in Android Studio
This is a bug in Android Studio which is fixed for next release(0.4.3) this is work around till next release.
Edit :
Check these for Manifest merging failed
Manifest Merging Failed: Android Studio
Execution failed for task :appprocessDebugManifest. Manifest merging failed. See console for more info