I\'m using Android Studio 0.8.2, and created a project with Android 4.1 and Android Wear 4.4. I need to integrate it with Google Play Services.
I\'m trying to follo
May be possibly your are using have different types of dependencies with different versions:
com.google.android.gms:play-services-neededDependency:version
Ex: If you are using both dependencies as mention below:
compile 'com.google.android.gms:play-services-gcm:7.8.0' compile 'com.google.android.gms:play-services-ads:8.3.0'
Try to use same version for different dependencies Like:
compile 'com.google.android.gms:play-services-gcm:7.8.0' compile 'com.google.android.gms:play-services-ads:7.8.0'
Thank you, hope helpful to you.
If you have:
compile 'com.google.android.gms:play-services-wearable:5.0.77'
then you don't need:
compile 'com.google.android.gms:play-services:5.0.77'
Delete the non-wearable one.