エラー: ':app:processDebugGoogleServices'タスクの実行に失敗しました。Androidスタジオのバージョン競合/ Googleマップ
Please fix the version conflict either by updating the version of the google-services plugin (information about the latest version is available at https://bintray.com/android/android-tools/com.google.gms.google-services/) or updating the version of com.google.android.gms to 9.0.0.
Googleマップを自分のプロジェクトに実装しようとしたときにこのエラーが発生しましたが、修正方法はありますか?
以下は、これまでのコードがある...
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.android.support:design:26.1.0'
implementation 'com.google.android.gms:play-services-maps:11.6.2'
compile 'com.google.android.gms:play-services-auth:9.0.0'
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'
}
私はこれを試してみました、それはまだdoesntの仕事。 –
SDKでインストールしたバージョンを使用していることを確認してください – Zoe