Problem when climbing APK

Asked

Viewed 247 times

1

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

You uploaded an APK using the 5208000 version of Google Play Services. Use 5100000 or lower version.

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

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

My question is the following, what is the version 5100000 code?

1 answer

3


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

Try to use:

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

    That’s the idea, just complementing... I got this version compile 'com.google.android.gms:play-services:5.0+'

Browser other questions tagged

You are not signed in. Login or sign up in order to post.