我正在尝试在Android Studio中编译一个Android项目,该项目导入:
com.squareup.okhttp.HttpResponseCache
我收到错误"无法解析符号'httpResponseCache'"
我尝试在 gradle 中添加以下依赖项但没有成功:
compile 'com.squareup.okhttp:okhttp-urlconnection:2.7.0'
compile 'com.squareup.okhttp:okhttp:2.7.0'
compile 'com.squareup:otto:1.3.8'
compile 'com.squareup.retrofit:retrofit:1.9.0'
compile 'com.squareup.okhttp3:okhttp:3.1.2'
我应该包含哪个库才能使用 HttpResponseCache?
根据文档,您应该导入android.net.http
.
显然com.squareup.okhttp.HttpResponseCache
在 v1 之后被弃用。我没有看到它在v2.0.0之后的软件包中
如果要使用它,请添加:
'com.squareup.okhttp:okhttp:1.6.0'