不推荐使用setLevel
中的方法HttpLoggingInterceptor
。
根据this SO post,用Level(...)替换setLevel(...)就足够了,但是再一次,我得到该级别在OkHttp3
中具有私有访问权限。
我在做什么错了?
当前使用:
implementation("com.squareup.okhttp3:logging-interceptor:4.2.1")
[编辑]
我通过清除Gradle File中的所有版本来解决我的问题,尤其是通过添加
def OkHttpVersion = "4.2.1"
implementation("com.squareup.okhttp3:okhttp:$OkHttpVersion")