Tag: 认证

Android Firebase身份验证:未找到com.google.android.gms.crash和com.google.firebase.auth的本地模块描述符类

对于我的硕士论文项目,我正在开发Android上的医疗诊断应用程序。 我在Android Studio 3.0 Beta 7中使用Kotlin。我已经使用Firebase实现了一个身份验证系统,并且每次在logcat中运行应用程序时,都会收到以下警告: DynamiteModule: Local module descriptor class for com.google.firebase.auth not found. DynamiteModule: Local module descriptor class for com.google.firebase.auth not found. 我正在使用电子邮件和密码登录方法。 身份验证工作得很好,所以我没有得到这个警告的来源。 我的gradle应用程序文件有: … dependencies { … implementation 'com.firebase:firebase-client-android:2.3.1' implementation 'com.google.firebase:firebase-auth:11.4.2' implementation 'com.google.firebase:firebase-database:11.4.2' implementation 'com.google.firebase:firebase-core:11.4.2' implementation 'com.google.firebase:firebase-crash:11.4.2' implementation 'com.google.android.gms:play-services-vision:11.4.2' … } apply plugin: 'com.google.gms.google-services' 当然,我确实已经在“清单”中加入了互联网许可证。 我尝试了不同的方法,我在这里看到,但没有任何工作: 我有12.55 GB的免费存储空间,所以不是关于存储空间 Google play服务安装在11.5.18版本中 我清除了所有的应用程序数据 […]