我试着为我找些东西,但它并没有帮助我。
这是我的gradle文件:
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile project(path: ':slideDateTimePicke')
compile('com.crashlytics.sdk.android:crashlytics:2.6.7@aar') {
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:1.1.5@aar'
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;
}
错误在哪里?
答案 0 :(得分:19)
添加以下行:
compile 'com.squareup.okhttp3:okhttp:3.6.0'
并将com.squareup.okhttp3:logging-interceptor
的版本升级为3.6.0
您可以查看上一个版本here
答案 1 :(得分:0)
最近更新的版本为implementation 'com.squareup.okhttp3:okhttp:3.11.0'
答案 2 :(得分:0)
这是由于使用不同版本的OkHttp引起的。确保来自com.squareup.okhttp3的所有依赖项都使用相同的版本。 参考:https://stackoverflow.com/a/59467567/7308789