E / FirebaseInstanceId: Ошибка получения токена: AUTHENTICATION_FAILED Firebase - PullRequest
0 голосов
/ 29 января 2019

Я пробовал много решений, но ни одно из них, похоже, не работает.Я пытаюсь настроить FireBase с моим проектом Android, но я получаю сообщение об ошибке E/FirebaseInstanceId: Token retrieval failed: AUTHENTICATION_FAILED.Примечание. Google-services.json установлен в каталог моего приложения.

Приложение:

dependencies {

implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'

implementation 'com.google.firebase:firebase-core:16.0.1'
}

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

Мое приложение:

dependencies {
    classpath 'com.android.tools.build:gradle:3.2.1'
    classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

    classpath 'com.google.gms:google-services:4.0.1'
    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...