我知道这个问题已经问过几次了,但是我似乎找不到解决该问题的方法。我已经将所有实现更新到最新版本,但是仍然出现以下错误。
错误:任务':app:processDebugGoogleServices'执行失败。 请通过更新google-services插件的版本(有关最新版本的信息可在https://bintray.com/android/android-tools/com.google.gms.google-services/上)或将com.google.android.gms的版本更新为16.0.3来解决版本冲突。>
我正在构建一个使用Firebase和地图的应用程序。该项目起初构建良好(无需连接到Firebase),但是当我连接并添加google-services插件时,出现上述错误
apply plugin: 'com.google.gms.google-services'
这是我的build.gradle(模块:应用程序)文件
....
dependencies
{
implementation fileTree(dir: 'libs', include: ['*.jar'])
// Android Support
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:support-media-compat:27.1.1'
implementation 'com.android.support:mediarouter-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:design:27.1.1'
// Android TestImplementation
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'
// Firebase Authentication
implementation 'com.google.firebase:firebase-auth:16.0.3'
implementation 'com.google.firebase:firebase-core:16.0.3'
// Google Play Services
implementation 'com.google.android.gms:play-services-maps:15.0.1'
implementation 'com.google.android.gms:play-services-location:15.0.1'
implementation 'com.google.android.gms:play-services-places:15.0.1'
// Google Sign In SDK
implementation 'com.google.android.gms:play-services-auth:16.0.0'
}
apply plugin: 'com.google.gms.google-services'
有人可以向我解释我要去哪里哪里