Picasso.get()
.load(url)
.into(imageView, callback);
Yesterday compiled well. Today is an error. What do you do with your library? Don't advise to update to this version in other issues!
So am I
We're actively developing the next major release. As we don't currently timestamp our snapshots, expect more breaking changes...
Where are we advising to update to this snapshot? Let us know so we can correct.
@jrodbx
https://github.com/square/picasso/issues/1684
https://github.com/square/picasso/issues/1514
I started plugging it after https://github.com/square/picasso/issues/364, though it wasn't advised directly. At that moment that version of the snapsot was stable and satisfied the needs.
In both cases, it was suggested to try but not necessarily depend on the snapshot -- a local or internal copy of the lib is probably the best course of action, as the API is likely to change as we push to a 3.0
yeah, you want deterministic builds.
consider downloading an aar from the snapshots repository to pin to one release.
Sad that I didn't know builds would often change. I have no a library of February, 20-27 dates, so have to return to 2.5.2.
Even if it was offered to try, this recommendation is now incorrect, as the library is unstable.
After some digging, it seems the Picasso.get() was moved into a separate module/provider. As a super quick workaround, you can:
compile 'com.squareup.picasso:picasso:3.0.0-SNAPSHOT'
compile 'com.squareup.picasso:picasso-provider:3.0.0-SNAPSHOT'
Picasso.get() with PicassoProvider.get()I couldn't find an archived snapshot, so resorting to still using the latest snapshot (though will now download a copy). I'd really hope this library could release a new version, or a versioned snapshot - 3.0.0 has resolved a lot of bugs for me, and been super stable otherwise! Thanks.
Most helpful comment
After some digging, it seems the
Picasso.get()was moved into a separate module/provider. As a super quick workaround, you can:Picasso.get()withPicassoProvider.get()I couldn't find an archived snapshot, so resorting to still using the latest snapshot (though will now download a copy). I'd really hope this library could release a new version, or a versioned snapshot - 3.0.0 has resolved a lot of bugs for me, and been super stable otherwise! Thanks.