daimajia / daimajia/AndroidImageSlider
com.squareup.picasso.Callback.onError(java.lang.Exception)"
Open
- Dominant language
- Java
- Stars
- 5.6k
- Forks
- 1.6k
- PR merge metrics
- No merged PRs in 30d
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
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.