作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我从来没有在我的项目中添加过 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/
当尝试将 angularfire 注入(inject)我的应用程序时,我遇到了错误 Error: [$injector:unpr] Unknown provider: $firebaseProvide
我从来没有在我的项目中添加过 firebase,尽管我得到了 Caused by: java.lang.ClassNotFoundException: Didn't find class "com.g
我是一名优秀的程序员,十分优秀!