OkHTTP and Picasso don't run together

前端 未结 6 2036
灰色年华
灰色年华 2020-12-05 18:40

I use Picasso library in my project to load images ande cache them. It works good without any problem. However, when I try to use OkHttp library to perform data communicatio

6条回答
  •  攒了一身酷
    2020-12-05 19:21

    This combination works for me:

    compile 'com.squareup.okhttp:okhttp:2.2.0'
    compile 'com.squareup.okhttp:okhttp-urlconnection:2.2.0'
    compile 'com.squareup.picasso:picasso:2.4.0'
    

提交回复
热议问题