Невозможно добавить FCM: не удалось разрешить com.гугл.firebase: firebase-auth:9.0.2, хотя я обновил свои сервисы google play


Когда я пытаюсь добавить compile "com.google.firebase:firebase-auth:9.0.2" в моем телосложении.gradle (приложение) он показывал следующую ошибку

Error:Failed to resolve: com.google.firebase:firebase-auth:9.0.2
<a href="openFile:/home/admin/Downloads/ZaakItPartner/app/build.gradle">Open File</a><br><a href="open.dependency.in.project.structure">Show in Project Structure dialog</a>

Примечание: я обновил свои сервисы google play.

1 2

1 ответ:

Наконец-то я получил

Необходимо обновить: сервисы Google Play (rev 30) и репозиторий Google (rev 26)

Строить.gradle (приложение):

 dependencies { compile "com.google.firebase:firebase-auth:9.0.2"}

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

Строить.gradle (проект):

dependencies {
        classpath 'com.android.tools.build:gradle:2.1.0'
        classpath 'com.google.gms:google-services:3.0.0'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }