Google Play services out of date. Requires 11011000 but found 10289574

前端 未结 8 1177
后悔当初
后悔当初 2020-11-29 11:05

I\'ve been strugling with this problem about week now. Been searching similar topics about this but still can\'t resolve my problem.

The Prolem is that when i\'m try

相关标签:
8条回答
  • 2020-11-29 11:41

    As String wrote the Play Services are not updated on the device. Unfortunately In a WearOS world it might be that the Play Services are up-to date, but they are simply not available on the wearables. In that case you can use following methods to react:

    GoogleApiAvailability apiAvailability = GoogleApiAvailability.getInstance();
    int result = apiAvailability.isGooglePlayServicesAvailable(this);
    if (result != ConnectionResult.SUCCESS) {
        ... 
    } else {
         apiAvailability.getErrorDialog(this, result, REQUEST_CODE,this).show();
    }
    
    0 讨论(0)
  • 2020-11-29 11:42

    You have to downgrade the API in wearable gradle file.

    The problem is that your device doesn't have up-to-date Google Play Services application.

    To fix it change into this:

    compile 'com.google.android.gms:play-services-wearable:10.0.0'
    compile 'com.google.android.gms:play-services:10.0.0'
    
    0 讨论(0)
提交回复
热议问题