Skip to content Skip to sidebar Skip to footer

Android Studio With Google Play: Google Play Services Is Missing

I am using Ubuntu 14, Android Studio 0.8.6. I am using Genymotion for running the app, the response I get, is: W/GooglePlayServicesUtil﹕ Google Play services is missing. Tried t

Solution 1:

Got a solution. Had to do two things - set the Play Services version to lower: 5.0.89. The last version wasn't available for downloading from any (virtual) device I tested, required update.

Secondly, to install Google Play Services to Genymotion VM, followed instructions under this link: How to install Google Play Services in a Genymotion VM (with no drag and drop support)?.

Cheers.

Solution 2:

Another solution is to change the target of your emulator to the Google API

enter image description here

To test your app when using the Google Play services SDK, you must use The Android emulator with an AVD that runs the Google APIs platform based on Android 4.2.2 or higher. Source

Solution 3:

Ojonugwa's solution is good but in addition there is an issue with the latest version of Google Play Services not being available on the emulator. However an appropriate version of Google Play Services is available on emulators running API version 21 or 19.

The current solution then is to create a new AVD with an API version of 21 or 19, and target Google APIs ( not Andriod x.x.x ). If you use a Google API AVD with API version 21 or 19 it should work as expected.

https://github.com/googlesamples/google-services/issues/32

Post a Comment for "Android Studio With Google Play: Google Play Services Is Missing"