web-dev-qa-db-ja.com

google-servicesプラグインはcom.google.Android.gmsまたはcom.google.firebaseのバージョンを検出できませんでした。デフォルトバージョン:9.0.0が使用されます

これらのライブラリを使用した既存のプロジェクトにfire-baseを統合しています

   compile 'com.google.firebase:firebase-auth:9.0.2'
compile 'com.google.firebase:firebase-database:9.0.2'
compile 'com.google.Android.gms:play-services:9.0.2'

依存関係

    dependencies {
    classpath 'com.Android.tools.build:gradle:2.1.2'
    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
}

このエラーが発生します

Error:Execution failed for task ':app:processDebugGoogleServices'.

Google-servicesプラグインのバージョンを更新して、バージョンの競合を修正してください(最新バージョンに関する情報は https://bintray.com/Android/android-tools/com.google.gms.google)で入手できます。 -services / )またはcom.google.Android.gmsのバージョンを9.0.0に更新します。

何が起こっているのか理解できませんか?

これらは私のプレイサービスのバージョンです enter image description here

6
Lokesh Tiwari

ついにbuild.gradle:(Module:app)にこの行を追加しました

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

そしてそれは働き始めました私はこれの背後にある概念が何であるかわかりませんか?
しかし、それは機能しています

7
Lokesh Tiwari

Gradleファイルを介してデフォルトの選択を上書きできます。そうすることで、RAプロジェクトとクライアントの衝突を回避できます。 重複エントリ:com/google/firebase/FirebaseApiNotAvailableException.class

0
Vaiden