2015-12-23 135 views
4

即使在添加依賴關係並導入類後,我得到java.lang.NoClassDefFoundError:com.squareup.okhttp.logging.HttpLoggingInterceptor。沒有類發現異常com.squareup.okhttp.logging.HttpLoggingInterceptor

任何人都可以請幫忙嗎?

搖籃構建文件

apply plugin: 'com.android.application' 

android { 
    compileSdkVersion 23 
    buildToolsVersion "23.0.2" 

    defaultConfig { 
     applicationId "xyz" 
     minSdkVersion 15 
     targetSdkVersion 23 
     versionCode 1 
     versionName "1.0" 
     multiDexEnabled = true 
    } 
    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
     } 
    } 

    repositories { 
     mavenCentral() 
    } 
} 

    dependencies { 
    compile fileTree(dir: 'libs', include: ['*.jar']) 
    testCompile 'junit:junit:4.12' 
    compile 'com.android.support:appcompat-v7:23.1.1' 
    compile 'com.android.support:support-v4:23.1.1' 
    compile 'com.google.code.gson:gson:2.4' 
    compile 'com.android.support:design:23.1.1' 
    compile 'com.android.support:cardview-v7:23.1.1' 
    compile 'com.google.android.gms:play-services:8.3.0' 
    compile 'com.facebook.android:facebook-android-sdk:4.1.0' 
    compile 'com.android.support:recyclerview-v7:23.1.1' 
    compile 'com.squareup.picasso:picasso:2.5.2' 
    compile 'com.jakewharton:butterknife:7.0.1' 
    compile 'com.squareup.retrofit:retrofit:2.0.0-beta2' 
    compile 'com.squareup.retrofit:converter-gson:2.0.0-beta2' 
    compile 'com.squareup.okhttp:logging-interceptor:2.6.0' 
    } 
+0

您使用的是Android Studio還是eclipse?如果Android Studio,你在使用Gradle嗎?如果是的話,你可以添加Gradle文件到你的問題? –

+0

@ cricket_007已添加構建文件 –

+0

您能否成功使用Gradle構建並檢查是否下載了所有依賴項? –

回答

0

而且它可以連接與multidex true選項在您的build.gradle(是的,似乎有些設備有問題,米ultidex應用程序(閱讀,三星))

如果這是你的情況,關閉此標誌並重建您的項目。考慮使用

minifyEnabled true 
shrinkResources true 

減少你的apk大小。如果它仍然太大,那真是奇怪和壞消息,但有一些techniques to put your apk on diet

6

在我的情況下,我發現okhttp3和okhttp3的版本:logging-interceptor依賴關係需要完全匹配。例如:

... 
compile 'com.squareup.retrofit2:converter-gson:2.1.0' 
compile 'com.squareup.okhttp3:okhttp:3.4.1' 
compile 'com.squareup.okhttp3:logging-interceptor:3.4.1' 
...