Google Play Services Out of Date. Requires 11011000 But Found 10289574

Flutter: Google Play services out of date

To run applications that require Play Services, you need to have an emulator with Google Play on board.

When creating a new emulator (Tools -> AVD Manager -> Create new virtual device... in Android Studio), there are only a few that support Google Play. The AVD Manager indicates which devices qualify for Android versions with Play Store preinstalled (highlighted in yellow):

After selecting a device that supports the Play Store, the system images will target a Google Play version:

Now, your emulator will provide all required features.

Google Play services out of date. Requires 10084000 but found 8118436

I figured out this issue. For those having the same problem, you need to download the correct APK. Go here to find it: http://www.apkmirror.com/apk/google-inc/google-play-services/

Google Play services out of date. Requires 10298000 but found 10084470

Are you using an emulator? If so, create a new emulator using API Level 25 or downgrade the version of google play services in your gradle to 9.6.0.

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

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.+'
}

Google play services out of date. Requires 5089000 but found 3136130

The final solution was creating a new emulator under Android 4.4.2, with the build target of the project set to Google APIs (x86 System Image). Thanks to Pedro Oliveira!



Related Topics



Leave a reply



Submit