Reputation: 42834
I am using the below code to load imges into the imageview in android
Picasso.with(context).load(finalImg)
.transform(new RoundedTransformation(50, 4))
.resize(100, 100).centerCrop()
.into(viewHolder.profileImage);
okhttp-2.3.0.jar
okio-1.3.0.jar
, okhttp-urlconnection-2.0.0.jar
Could not find method com.squareup.okhttp.internal.Util.emptySink, referenced from method com.squareup.okhttp.internal.huc.HttpURLConnectionImpl.initHttpEngine
Upvotes: 0
Views: 304
Reputation: 42834
okhttp-urlconnection-2.0.0.jar
with
okhttp-urlconnection-2.2.0.jar
Upvotes: 1