Android:Fire Base在4.4.4中不起作用

时间:2016-10-31 08:56:28

标签: android firebase firebase-realtime-database android-multidex

我正在尝试在我的应用程序中实现Fire Base。它在Lollipop及以上的工作正常。

在运行前棒棒糖时遇到错误:

java.lang.NoClassDefFoundError: com.google.firebase.FirebaseOptions
at com.google.firebase.FirebaseApp.zzbu(Unknown Source)
at com.google.firebase.provider.FirebaseInitProvider.onCreate(Unknown Source)
at android.content.ContentProvider.attachInfo(ContentProvider.java:1591)
at android.content.ContentProvider.attachInfo(ContentProvider.java:1562)
at com.google.firebase.provider.FirebaseInitProvider.attachInfo(Unknown Source)
at android.app.ActivityThread.installProvider(ActivityThread.java:4825)
at android.app.ActivityThread.installContentProviders(ActivityThread.java:4420)
at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4360)
at android.app.ActivityThread.access$1500(ActivityThread.java:141)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1272)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:136)
at android.app.ActivityThread.main(ActivityThread.java:5052)
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:796)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:612)
at dalvik.system.NativeStart.main(Native Method)

在我的Gradle中:

defaultConfig {
    applicationId "com.manoramaonline.mmc.year2017"
    minSdkVersion 14
    targetSdkVersion 23
    multiDexEnabled true
}
dependencies {
    compile project(':library')
    compile project(':wheel')
    compile project(':socialauthandroid')
    compile project(':ambilWarna')
    compile files('libs/acra-4.5.0.jar')
    compile files('libs/FlurryAgent.jar')
    compile files('libs/poi-3.9.jar')
    compile 'com.android.support:appcompat-v7:23.0.1'
    compile 'com.android.support:support-v4:23.0.0'
    compile 'com.android.support:design:23.1.1'
    compile 'com.google.android.gms:play-services-ads:9.0.0'
    compile 'com.google.android.gms:play-services-analytics:9.0.0'
    compile files('libs/InMobi-5.3.1.jar')
    compile 'com.android.support:cardview-v7:23.3.+'
    compile 'com.android.support:recyclerview-v7:23.3.+'
    compile 'com.loopj.android:android-async-http:1.4.9'
    compile 'com.googlecode.json-simple:json-simple:1.1'
    compile 'com.google.firebase:firebase-core:9.0.0'
    compile 'com.google.firebase:firebase-messaging:9.0.0'
    compile 'com.android.volley:volley:1.0.0'
    compile 'com.android.support:multidex:1.0.1'
}

我尝试添加MultiDex作为依赖项并在默认配置中启用它。但是没有解决方案。

我认为问题是64k参考限制

但不知道如何解决它。

2 个答案:

答案 0 :(得分:3)

我也有同样的问题,我只是将谷歌播放服务依赖关系降级为编译'com.google.android.gms:play-services:8.4.0',问题就解决了。

答案 1 :(得分:1)

我在棒棒糖前设备上也有同样的问题, 我想你忘了添加

android:name="android.support.multidex.MultiDexApplication">

里面<申请>清单中的标签。

示例

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.android.multidex.myapplication">
    <application
        ...
        android:name="android.support.multidex.MultiDexApplication">
        ...
    </application>
</manifest>