android – NoSuchMethodError如果我使用okhttp 2.0和最新的改装?

前端之家收集整理的这篇文章主要介绍了android – NoSuchMethodError如果我使用okhttp 2.0和最新的改装?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
找不到方法com.squareup.okhttp.OkHttpClient.open,从方法retrofit.client.OkClient.openConnection引用.

下面是我的毕业生配置

compile 'com.squareup.okhttp:okhttp:+'
compile 'com.squareup.okhttp:okhttp-urlconnection:+'
compile 'com.squareup.retrofit:retrofit:+'

解决方法

好吧,Square已经在github上发布了2.0 RC2,但是没有在maven上发布:

https://github.com/square/okhttp

但你仍然需要okhttp-urlconnection(RC1,现在)这只是在maven:

http://mvnrepository.com/artifact/com.squareup.okhttp

而不要忘记okhttp 2.0现在依赖于okio:

https://github.com/square/okio

猜你在找的Android相关文章