Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Play services out of date. Requires 7571000 but found 6774470

Im trying to add google play API to my android game and i followed the instructions in their site.

I got this error in the emulator run, trying to solve it. (on my phone the app just crash)

In the manifest:

<meta-data
        android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version" />

In the Version.xml

<integer name="google_play_services_version">7571000</integer>

and i got all the necessary packages installed.

What the problem may be?

Comment: it's installed

like image 994
LamaTo Avatar asked Jun 10 '15 21:06

LamaTo


People also ask

How do I install older version of Google Play Services?

If you need a rollback of Google Play Services, check out the app's version history on Uptodown. It includes all the file versions available to download off Uptodown for that app. Download rollbacks of Google Play Services for Android.

Why do I keep getting Google Play Services error?

Whether you're experiencing the Google Play services keeps stopping 2019 error on the Google Play Store itself or other Google apps, the most common solution is to make sure that your apps are up to date. From the home screen of your Android device, head over to the Google Play Store app on your Android device.

Why is Google Play Services no longer supported by my device?

Go To Settings> Security > Device Administators> Disable Android Device manager. Now Go to Apps and Disable Google Play Services and Clear Its data, Clear Data of Play Store too. Reboot device andd Enable Google Play Services.


1 Answers

Add the below script in dependencies.gradle, it will download the latest play service lib automatically, and you can find them on local path such as: m2repository/com/google/android/gms/play-services.

dependencies {
  compile 'com.google.android.gms:play-services:4.2.+'
}
like image 104
Xue Jing Avatar answered Sep 29 '22 19:09

Xue Jing