更新Google Play服务错误

时间:2018-02-14 13:03:13

标签: android android-studio firebase firebase-authentication

运行使用Firebase身份验证工具的应用程序时出现问题。

当我进入流程的“创建帐户”阶段时,我遇到了“错误”,这告诉我要更新我的Google Play服务。

Screen Shot of Error

我尝试通过project structure > dependencies手动添加Google Play服务,但无济于事 - 问题保持不变。

模块:应用Gradle文件

    apply plugin: 'com.android.application'

android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "com.example.XXX.myapplication"
        minSdkVersion 15
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'com.android.support:appcompat-v7:27.0.2'
    implementation 'com.android.support:design:27.0.2'
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    implementation 'com.android.support:support-v4:27.0.2'
    implementation 'com.google.firebase:firebase-auth:11.8.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.1'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
    compile 'com.android.support:recyclerview-v7:27.0.2'
    compile 'com.android.support:cardview-v7:27.0.2'
    compile 'com.android.volley:volley:1.1.0'
    implementation 'com.github.bumptech.glide:glide:4.6.1'
    annotationProcessor 'com.github.bumptech.glide:compiler:4.6.1'
    compile 'com.google.firebase:firebase-core:11.8.0'
    implementation 'com.google.android.gms:play-services:11.8.0'
    implementation 'com.android.support:mediarouter-v7:27.0.2'
    implementation 'com.google.android.gms:play-services-ads:11.8.0'
}

apply plugin: 'com.google.gms.google-services'

检查了Stack中的其他线程但似乎没有解决问题。任何有关这方面的帮助将非常感谢!感谢。

3 个答案:

答案 0 :(得分:1)

此通知报告必须更新手机上安装的Google支持库版本,以支持您尝试运行的应用。通常,当新版本发布时,此支持库会自动更新。

您需要从Google Play商店下载更新。如果您点按通知,则应在Google Play服务上打开Play商店应用。然后点击更新。

答案 1 :(得分:1)

使用file structure > dependencies添加Google Play服务库后,此处需要的只是创建新的AVD。 Google Play服务似乎不会注册已存在的AVD。

然后我不得不更新Google Play。这是通过单击控制面板底部的...,导航到Google Play标签来完成的。然后点击更新:

enter image description here

希望这有帮助。

答案 2 :(得分:0)

试试这个,如果播放服务没有更新,那么它会重定向你更新它:

public boolean checkPlayServices() {
    GoogleApiAvailability apiAvailability = GoogleApiAvailability.getInstance();
    int resultCode = apiAvailability.isGooglePlayServicesAvailable(this);
    if (resultCode != ConnectionResult.SUCCESS) {
        if (apiAvailability.isUserResolvableError(resultCode)) {
            apiAvailability.getErrorDialog(this, resultCode,9000).show();
        } else {
            Log.i("error", "This device is not supported.");
            finish();
        }
        return false;
    }
    return true;
}