Skip to content Skip to sidebar Skip to footer

Android Wear Emulator Show Error Service_version_update_required For Google Play Services

I am testing android wear app on Wear Emulator and using eclipse to develop. In wear app there are code as below in onCreate: mGoogleApiClient = new GoogleApiClient.Builder(this).

Solution 1:

I believe I had the same error.

If your build.gradle is:

compile 'com.google.android.gms:play-services:+'

change it to:

compile 'com.google.android.gms:play-services:5.0.89'

that's because Google didn't completely roll out the latest play services to devices, but it's already available to developers. As an alternative solution, you can check if there's an update to the WearEmulator on the SDK Manager.

Solution 2:

If you look in your build.gradle file, you are probably using play-services. You need to use play-services-wearable instead, which has the correct version.

compile'com.google.android.gms:play-services-wearable:+'

If you are using Eclipse, you need to ensure you unpack the play-services-wearable AAR file and not the standard mobile play-services AAR file.

Post a Comment for "Android Wear Emulator Show Error Service_version_update_required For Google Play Services"