我在Google登录身份验证期间收到错误消息。以下是错误:
Error:Execution failed for task ':app:processDebugGoogleServices'.
> 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 16.0.1.
我正在尝试使用firebase的官方文档中的get代码。
implementation 'com.google.firebase:firebase-auth:16.0.1'
implementation 'com.google.android.gms:play-services-auth:15.0.1'
如何解决?
答案 0 :(得分:1)
答案在错误信息中:
“请通过更新google-services插件的版本(https://bintray.com/android/android-tools/com.google.gms.google-services/提供有关最新版本的信息)或将com.google.android.gms的版本更新为16.0来修复版本冲突。 1。“
将“com.google.android.gms:play-services-auth:15.0.1”设置为“16 .0.1”。
同时检查您是否在firebase控制台中启用了身份验证(不确定您使用的身份验证方法,但启用您使用的身份验证方法)。