gpt4 book ai didi

android - 即使未将 firebase 添加到项目中,也找不到 FirebaseProvider

转载 作者:行者123 更新时间:2023-11-29 02:42:18 43 4
gpt4 key购买 nike

我从来没有在我的项目中添加过 firebase,尽管我得到了

Caused by: java.lang.ClassNotFoundException: Didn't find class "com.google.firebase.provider.FirebaseInitProvider" on path: DexPathList[[zip file "/data/app/com.wma.ozfoodhunter-1.apk"],nativeLibraryDirectories=[/data/app-lib/com.wma.ozfoodhunter-1, /system/lib]]
at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:56)
at java.lang.ClassLoader.loadClass(ClassLoader.java:497)
at java.lang.ClassLoader.loadClass(ClassLoader.java:457)
at android.app.ActivityThread.installProvider(ActivityThread.java:4762)
at android.app.ActivityThread.installContentProviders(ActivityThread.java:4369) 
at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4309) 
at android.app.ActivityThread.access$1500(ActivityThread.java:135) 
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1256) 
at android.os.Handler.dispatchMessage(Handler.java:102) 
at android.os.Looper.loop(Looper.java:136) 
at android.app.ActivityThread.main(ActivityThread.java:5001) 
at java.lang.reflect.Method.invokeNative(Native Method) 
at java.lang.reflect.Method.invoke(Method.java:515) 
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:785) 
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:601) 
at dalvik.system.NativeStart.main(Native Method) 

只有当我在 KitKat 上运行该应用程序时才会出现此错误。

当我试图搜索我是否在项目中使用了 firebase 时,我只能在 R 文件中找到 firebase。

谁能解释一下为什么 firebase 被添加到我的 R 文件中,即使它没有在项目中使用。

我的 Gradle 是

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})

compile 'com.nineoldandroids:library:2.4.0'
compile 'com.daimajia.slider:library:1.1.5@aar'
compile 'com.android.volley:volley:1.0.0'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.afollestad:sectioned-recyclerview:0.2.3'
compile 'com.daimajia.slider:library:1.1.5@aar'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.nineoldandroids:library:2.4.0'
compile 'com.afollestad:sectioned-recyclerview:0.2.3'
compile 'com.android.volley:volley:1.0.0'
compile 'com.android.support:appcompat-v7:25.3.0'
compile 'com.android.support:design:25.3.0'
compile 'me.relex:circleindicator:1.2.2@aar'
compile 'com.bignerdranch.android:expandablerecyclerview:3.0.0-RC1'
compile 'com.thoughtbot:expandablerecyclerview:1.3'
compile 'com.android.support:support-v4:25.3.0'
compile 'com.google.code.gson:gson:2.6.2'
compile 'com.facebook.fresco:fresco:0.12.0'
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'net.hockeyapp.android:HockeySDK:4.0.0'
compile 'com.github.paolorotolo:expandableheightlistview:1.0.0'
compile 'org.greenrobot:eventbus:3.0.0'
compile 'com.google.android.gms:play-services:10.2.0'
compile 'com.appyvet:materialrangebar:1.3'
compile 'com.android.support:multidex:1.0.1'
compile 'com.kofigyan.stateprogressbar:stateprogressbar:0.0.3'
compile 'com.squareup.retrofit2:retrofit:2.0.2'
compile 'com.squareup.retrofit2:converter-gson:2.0.2'
compile 'com.squareup.okhttp3:okhttp:3.0.0-RC1'
compile 'com.felipecsl.asymmetricgridview:library:2.0.1'
compile 'com.google.android.gms:play-services:9.2.0'
compile 'com.google.android.gms:play-services-location:9.2.0'
testCompile 'junit:junit:4.12'
}

最佳答案

version 9.0 开头,Firebase API 与 Google Play Services API bundle 在一起。当您依赖于:

compile 'com.google.android.gms:play-services:9.2.0'

您可以获得所有 Play 服务 API,包括 Firebase。这会使您的 APK 不必要地变大,增加构建时间,并且通常需要使用 Multidex。

您应该用您需要的特定 API 替换对 play-services 的依赖。它们列在 this documentation 的表 1 中.

关于android - 即使未将 firebase 添加到项目中,也找不到 FirebaseProvider,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43271566/

43 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com