Java 火基错误?W/BiChannelGoogleApi:[FirebaseAuth:]getGoogleAPI方法()返回Gms

Java 火基错误?W/BiChannelGoogleApi:[FirebaseAuth:]getGoogleAPI方法()返回Gms,java,android,firebase,firebase-realtime-database,build.gradle,Java,Android,Firebase,Firebase Realtime Database,Build.gradle,因此,我对Java/Android相当陌生。我尝试制作一个简单的应用程序,使用Firebase连接,用户可以注册并使用该帐户登录应用程序 我已经设法让他们创建了一个帐户,它被正确地存储在数据库中,但是当您尝试使用该帐户登录时,它什么也不做,并且出现以下错误: W/BiChannelGoogleApi: [FirebaseAuth: ] getGoogleApiForMethod() returned Gms 我用谷歌搜索并尝试了许多不同的解决方案,但都没有效果 这是我的build.gradle

因此,我对Java/Android相当陌生。我尝试制作一个简单的应用程序,使用Firebase连接,用户可以注册并使用该帐户登录应用程序

我已经设法让他们创建了一个帐户,它被正确地存储在数据库中,但是当您尝试使用该帐户登录时,它什么也不做,并且出现以下错误:

W/BiChannelGoogleApi: [FirebaseAuth: ] getGoogleApiForMethod() returned Gms
我用谷歌搜索并尝试了许多不同的解决方案,但都没有效果

这是我的build.gradle(模块:app)


除了Firebase错误之外,粗体实现也给了我一个我似乎无法解决的错误。

要解决这个问题,请更改这行代码:

implementation 'com.firebaseui:firebase-ui-database:0.4.4'


Firebase UI的每个版本都依赖于Firebase版本的固定版本。有关更多信息,请参阅。

我使用这些依赖项解决了此问题

implementation 'com.google.firebase:firebase-core:16.0.1'
implementation 'com.google.firebase:firebase-auth:16.0.1'
implementation 'com.firebase:firebase-client-android:2.3.1'
implementation 'com.google.firebase:firebase-database:16.0.1'
implementation 'com.google.android.gms:play-services-auth:16.0.0'

当我这样做时,我的java类文件中会出现一些错误。一些FirebaseRecyclerAdaptererrors@Ninja尽量使用最新版本。此版本已有1年历史。
implementation 'com.firebaseui:firebase-ui-database:3.3.1'
implementation 'com.google.firebase:firebase-core:16.0.1'
implementation 'com.google.firebase:firebase-auth:16.0.1'
implementation 'com.firebase:firebase-client-android:2.3.1'
implementation 'com.google.firebase:firebase-database:16.0.1'
implementation 'com.google.android.gms:play-services-auth:16.0.0'