E / FirebaseInstanceId:令牌检索失败:AUTHENTICATION_FAILED - 改变了什么?

时间:2017-12-22 17:59:56

标签: android firebase kotlin

我不确定这里发生了什么,我拉了最近更新的回购,每当我打开应用程序在模拟器上调试它时,我会得到E/FirebaseInstanceId: Token retrieval failed: AUTHENTICATION_FAILED,因为应用程序会加载主屏幕。然而,这在今天之前没有发生过,所以我不知道会发生什么变化?我从Firebase控制台删除了该应用并重新添加(通过Firebase助手),但这也没有修复它?我已经包含了我的build.grade文件,但我不确定还需要查看其他内容,我们将不胜感激。

apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "com.android.projectrc"
        minSdkVersion 16
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        vectorDrawables.useSupportLibrary = true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation 'com.wdullaer:materialdatetimepicker:3.4.0'
    implementation "org.jetbrains.anko:anko:$anko_version"
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
    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.github.bumptech.glide:glide:4.2.0'
    implementation 'com.google.firebase:firebase-auth:11.0.4'
    implementation 'com.google.firebase:firebase-database:11.0.4'
    implementation 'com.google.firebase:firebase-storage:11.0.4'
    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'
}








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

7 个答案:

答案 0 :(得分:2)

在我的情况下,问题是模拟器未连接到Internet,似乎未像ios模拟器那样隐式连接。

答案 1 :(得分:2)

检查模拟器中是否有Internet连接。我遇到了同样的问题,运行这样的模拟器对我有帮助:

emulator -avd <Avd name> -dns-server 8.8.8.8

答案 2 :(得分:1)

我的猜测是已发布新版Google Play库,而您的测试设备/模拟器需要更新其当前安装的版本。

检查设备/模拟器上的Google Play商店应用,进行更新,您应该好好去!

答案 3 :(得分:1)

使用模拟器 没有 的Google Play会导致此错误。

答案 4 :(得分:0)

我遇到了同样的问题。我当时使用的是带有API 28的Nexus,但它有很多错误,无法更新Google Play。

我必须使用API​​ 24创建另一个模拟器,并从该模拟器更新Google Play。现在,电子邮件身份验证和Firestore可以使用了,但是Facebook和Google登录名尽管在ios上也不能使用。

答案 5 :(得分:0)

我也遇到了同样的问题。这是我第一次使用带有API 28的Nexus。

Android Studio提示我说"2019-06-06 09:16:04.540 4415-4502/com.google.android.youtube E/FirebaseInstanceId: Token retrieval failed: AUTHENTICATION_FAILED"

最后,我卸载了模拟器并安装了具有API 26的新Nexus。问题终于得到解决。

答案 6 :(得分:0)

为Android模拟器解决的冷启动设备