2017-04-12 597 views
2

我试过找到一些东西给我,但它没有帮助我。引起:java.lang.ClassNotFoundException:没有找到类“okhttp3.internal.Platform”

这是我的gradle这个文件:

dependencies { 
    compile fileTree(include: ['*.jar'], dir: 'libs') 
    compile project(path: ':slideDateTimePicke') 
    compile('com.crashlytics.sdk.android:crashlytics:[email protected]') { 
     transitive = true; 
    } 
    compile 'com.android.support:support-v4:25.3.1' 
    compile 'com.android.support:appcompat-v7:25.3.1' 
    compile 'com.android.support:design:25.3.1' 
    compile 'com.android.support:cardview-v7:25.3.1' 
    compile 'com.google.code.gson:gson:2.7' 
    compile 'com.squareup.retrofit2:retrofit:2.1.0' 
    compile 'com.squareup.retrofit2:converter-gson:2.1.0' 
    compile 'com.squareup.okhttp3:logging-interceptor:3.3.1' 
    compile 'com.facebook.stetho:stetho-okhttp3:1.4.2' 
    compile 'cn.pedant.sweetalert:library:1.3' 
    compile 'com.github.bumptech.glide:glide:3.7.0' 
    compile 'uk.co.chrisjenx:calligraphy:2.2.0' 
    compile 'com.daimajia.slider:library:[email protected]' 
    compile 'com.nineoldandroids:library:2.4.0' 
    compile 'com.google.android.gms:play-services-maps:10.2.1' 
    compile 'com.google.android.gms:play-services-vision:10.2.1' 
    compile 'com.google.firebase:firebase-messaging:10.2.1' 
    compile 'com.google.zxing:core:3.2.0' 
    compile 'com.makeramen:roundedimageview:2.2.1' 
    compile 'org.florescu.android.rangeseekbar:rangeseekbar-library:0.3.0' 
    compile 'com.android.support:multidex:1.0.1' 
    compile 'com.jakewharton:butterknife:8.5.1' 
    compile 'com.android.support.constraint:constraint-layout:1.0.1' 
    annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1' 
} 

这是我的代码:

private static OkHttpClient createClient() { 
    return new OkHttpClient.Builder() 
      .addInterceptor(createLoggingInterceptor()) 
      .build(); 
} 

private static HttpLoggingInterceptor createLoggingInterceptor() { 
    HttpLoggingInterceptor logging = new HttpLoggingInterceptor(); 
    logging.setLevel(HttpLoggingInterceptor.Level.BASIC); 
    return logging; 
} 

哪里是错误?

回答

11

加入这一行:

compile 'com.squareup.okhttp3:okhttp:3.6.0' 

和升级com.squareup.okhttp3:logging-interceptor版本3.6.0

相关问题