1. ホーム
  2. android

[解決済み] エラー:バージョンの衝突を修正(google-servicesプラグイン)

2022-02-02 23:22:36

質問

の通りです。 これ SOスレッドで、バージョンの衝突があることは分かっていますが、Googleからの新しいバージョンの後でも問題はまだ残っています。

<ブロッククオート

Error:Execution failed for task ':app:processDebugGoogleServices'. google-services プラグインのバージョンを更新するか、バージョンの衝突を解決してください。 https://bintray.com/android/android-tools/com.google.gms.google-services/ または com.google.android.gms のバージョンを 10.0.1 に更新してください。

私の build.gradle(モジュール:app)

....
dependencies {
   compile fileTree(dir: 'libs', include: ['*.jar'])
   androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
    exclude group: 'com.android.support', module: 'support-annotations'
    })
   compile 'com.android.support:appcompat-v7:26.+'
   compile 'com.android.support.constraint:constraint-layout:1.0.2'
   testCompile 'junit:junit:4.12'
   compile 'com.google.firebase:firebase-messaging:10.0.1'
   compile 'com.google.android.gms:play-services-maps:11.0.4'
   compile 'com.google.android.gms:play-services-location:11.0.4'
}

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


今、必要な変更は何ですか?

解決方法は?

を変更した方がいいと思います。

compile 'com.google.firebase:firebase-messaging:11.0.4'