Open
Description
I was having this issue with an older version of Picasso 2.5.2. Solved it by upgrading to the newer version
implementation 'com.squareup.picasso:picasso:2.71828'
Don't forget that all calls to Picasso must now be updated from:
old syntax
Picasso.with(context)
.load(url)
.into(imageView)
to new syntax
Picasso.get()
.load(url)
.into(imageView)
please fix it
Metadata
Metadata
Assignees
Labels
No labels