我是android新手, 只是我正在尝试使用开发简单的登录/注册应用程序 Firebase登录/注册
初始化FirebaseAuth实例时,我的应用程序崩溃。
mAuth = FirebaseAuth.getInstance();
并打印此错误: 找不到com.google.android.gms.internal.zzeuq的zzeuq类文件。
我已经搜索了很多次并尝试了diff依赖关系,但是没有人工作。
这是我的依赖项
implementation 'com.google.firebase:firebase-core:16.0.4'
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'com.google.firebase:firebase-auth:11.6.0'
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身份验证
旧的: 实施'com.google.firebase:firebase-auth:11.6.0'
工作了一个: 实施'com.google.firebase:firebase-auth:16.0.5'