Problem uploading APK

1

I'm trying to upload an apk to Google Play and got the following message:

  

You uploaded an APK that uses Google Play version 5208000   Services. You must use version 5100000 or lower.

In my buil.gradle file I have the following dependency on Play

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

My question is, what is the code for the 5100000?

    
asked by anonymous 18.08.2014 / 08:05

1 answer

3

The code you're using compiles the latest version of Google Play Services, but the change has not yet been "fully implemented."

Try using:

compile 'com.google.android.gms:play-services:5.0.89'
    
18.08.2014 / 12:22