Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 807
Ashish Avatar asked Jul 07 '19 15:07

Ashish


People also ask

What is the latest version of Picasso library?

The latest version is 2.71828.

Which is better glide or Picasso?

Glide is faster and the results of Picasso and Coil are similar. But what about when we are loading from the cache. As you can see in the images below we have the best times for Glide in most of the cases.

What is Picasso API?

A powerful image downloading and caching library for Android.


2 Answers

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

like image 116
TheAnkush Avatar answered Sep 28 '22 10:09

TheAnkush


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

like image 20
Deˣ Avatar answered Sep 28 '22 11:09

Deˣ