2

Я обновил приложение до новой firebase, используя и теперь, когда я скомпилирую свой проект на устройстве с помощью Android Kitkat, я получаю следующее исключение, но функция обычно на Android LollipopAndroid Firebase NoClassDefFoundError: com.google.firebase.FirebaseOptions после обновления до новой firebase

Вот мой LogCat при запуске на Android KitKat:

AndroidRuntime: FATAL EXCEPTION: main 
    Process: com.lemon.kenhnhacvn, PID: 23133 
    java.lang.NoClassDefFoundError: com.google.firebase.FirebaseOptions 
     at com.google.firebase.FirebaseApp.zzek(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:4818) 
     at android.app.ActivityThread.installContentProviders(ActivityThread.java:4413) 
     at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4353) 
     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:5045) 
     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:779) 
     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:595) 
     at dalvik.system.NativeStart.main(Native Method) 

Мои build.gradle:

compile fileTree(include: ['*.jar'], dir: 'libs') 
testCompile 'junit:junit:4.12' 
compile project(':searchlibrary') 
compile 'com.android.support:multidex:1.0.1' 
compile 'com.android.support:appcompat-v7:24.1.1' 
compile 'com.android.support:design:24.1.1' 
compile 'com.android.support:recyclerview-v7:24.1.1' 
compile 'com.android.support:cardview-v7:24.1.1' 
compile 'com.android.support:palette-v7:24.1.1' 
compile 'com.google.code.gson:gson:2.6.2' 
compile 'de.hdodenhof:circleimageview:2.0.0' 
compile 'com.squareup.picasso:picasso:2.5.2' 
compile 'com.jakewharton:butterknife:8.0.1' 
apt 'com.jakewharton:butterknife-compiler:8.0.1' 
compile 'com.facebook.android:facebook-android-sdk:4.10.0' 
compile 'com.google.android.gms:play-services:9.4.0' 
compile 'com.google.firebase:firebase-core:9.4.0' 
compile 'com.google.firebase:firebase-messaging:9.4.0' 

Может ли кто-нибудь помочь мне решить эту проблему?

ответ

1

В вашем случае

Удалить эту зависимость из build.gradle файла

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

и добавить отдельные один, как это

compile 'com.google.android.gms:play-services-maps:9.4.0' 
compile 'com.google.android.gms:play-services-location:9.4.0' 

это должен решить вашу проблему.

+1

Спасибо за вашу помощь, я немного изменился по вашему мнению, следующим образом: компилировать «ком. google.android.gms: play-services-maps: 9.4.0 ' compile' com.google.android.gms: play-services-location: 9.4.0 ' compile' com.google.android.gms: play- services-analytics: 9.4.0 ' compile' com.google.android.gms: play-services-vision: 9.4.0 'вместо o f: compile 'com.google.android.gms: play-services: 9.4.0', и он решил проблему на –

+0

@ThangDinh, если мой ответ будет полезен, вы можете отметить как принятый, чтобы помочь другим решить проблему. – Ironman

+1

Это тоже помогло, спасибо @Ironman –

0

Загрузите последние сервисы Google Play от менеджера SDK. и скомпилировать последний Google Play Services в build.gradle

0

На верхнем уровне Gradle:

buildscript { 
    repositories { 
     jcenter() 
} 
    dependencies { 
     classpath 'com.android.tools.build:gradle:1.5.0' 
     classpath 'com.google.gms:google-services:3.0.0' 
     // NOTE: Do not place your application dependencies here; they belong 
     // in the individual module build.gradle files 
    } 
} 

на App уровне Gradle:

dependencies { 
    compile fileTree(dir: 'libs', include: ['*.jar']) 
    testCompile 'junit:junit:4.12' 
    compile 'com.android.support:appcompat-v7:24.1.1' 
    compile 'com.google.firebase:firebase-messaging:9.4.0' 
    compile 'com.google.android.gms:play-services:9.4.0' 
    compile 'com.google.firebase:firebase-core:9.4.0' 
    compile 'com.firebase:firebase-client-android:2.3.1' 
    compile 'com.google.firebase:firebase-core:9.4.0' 
    compile 'com.firebase:firebase-client-android:2.3.1' 
} 
apply plugin: 'com.google.gms.google-services' 

 Смежные вопросы

  • Нет связанных вопросов^_^