尝试在 Android 中实现 FirebaseUI — Auth 时项目中,开发人员在编译过程中可能会遇到此错误消息:“无法解析 com.google.android.gms:play-services-auth:11.4.0。”此错误通常表示项目的构建脚本中缺少或不正确的依赖项配置。
要解决此问题,开发人员可以按照以下步骤操作:
添加 Maven存储库:项目的根级 build.gradle 文件应包含以下配置:
allprojects { repositories { jcenter() maven { url "https://maven.google.com" } } }
此存储库对于解决 Google Play 服务依赖关系至关重要。
验证版本一致性:确保所有 Firebase 和 Google Play Services 库使用相同版本。应相应更新以下内容:
compile 'com.google.firebase:firebase-database:11.0.4' compile 'com.google.firebase:firebase-auth:11.0.4' compile 'com.google.android.gms:play-services-auth:11.4.0'
更新 Google Play Services Gradle 插件(可选):确保最新版本的 Google Play Services Gradle 插件(至少 3.3.1)正在使用:
classpath 'com.google.gms:google-services:4.0.1'
以上是如何解决 FirebaseUI 身份验证中的“无法解析 com.google.android.gms:play-services-auth:11.4.0\”错误?的详细内容。更多信息请关注PHP中文网其他相关文章!