Ashish
Ashish

Reputation: 6919

How to get Latest Version code of Picasso

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

Answers (3)

DCHIKUNGURU
DCHIKUNGURU

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

Deˣ
Deˣ

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'

enter image description here

Upvotes: 2

TheAnkush
TheAnkush

Reputation: 915

Latest version is 2.71828

implementation 'com.squareup.picasso:picasso:2.71828'

Available on their github https://github.com/square/picasso

enter image description here

Upvotes: 4

Related Questions