在我未在项目中使用firebase auth的情况下,构建项目时出现以下错误:
错误:程序类型已存在:com.google.firebase.auth.FirebaseAuthException
我尝试了以下操作,但似乎无济于事
我的依赖项如下:
dependencies {
implementation fileTree( dir: 'libs',include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support:support-vector-drawable:27.1.1'
implementation 'android.arch.lifecycle:extensions:1.1.1'
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'
implementation ('com.google.firebase:firebase-admin:6.8.0'){
exclude module:'com.google.firebase-auth'
}
}
implementation 'com.google.firebase:firebase-firestore:19.0.1'
答案 0 :(得分:0)
您不能在Android应用中使用Firebase Admin SDK。它只能在受信任的环境中使用,例如开发机器,您控制的服务器或Cloud Functions。
如果删除此依赖项,该错误应消失:
implementation ('com.google.firebase:firebase-admin:6.8.0'){
答案 1 :(得分:0)
此问题通常来自命名冲突(很可能是因为类在项目中以依赖关系或错误的形式出现了多次)。
要找到模块“ x”的依赖项列表,我们可以运行
./gradlew x:dependencies
检索所有库的列表。
从依赖关系树中,您可以确定是否存在两个库使用相同名称的类/库。基于此发现,您可以选择将模块排除在引起冲突的一个库中。