Reputation: 6919
I want to implement Picasso in my project but when i try to implement Picasso in my project. I visited their website to get dependency. But they removed the latest version number so i can't find what is latest version number of Picasso.
If someone comment down the version i'll be glad
Website Link(Click Here)
Thanks in Advance
Upvotes: 5
Views: 10362
Reputation: 21
Just visit https://square.github.io/picasso/#download
copy GRADLE link: implementation 'com.squareup.picasso:picasso:(insert latest version)'
To get the version from https://github.com/square/picasso/releases
Version 2.8 is the latest as of today's post Oct 04 2020 which was released this on Aug 10 2020.
Upvotes: 2
Reputation: 4371
You should have visited their Github. It's mentioned there.
The latest version is 2.71828.
implementation 'com.squareup.picasso:picasso:2.71828'
Upvotes: 2
Reputation: 915
Latest version is 2.71828
implementation 'com.squareup.picasso:picasso:2.71828'
Available on their github https://github.com/square/picasso
Upvotes: 4