Image Downloading Library - Picasso

Picasso is best image downloading and caching library using in android.

It's very fast to show the image from the URL.

Using picasso is very simple to do it.

From Gradle

      compile 'com.squareup.picasso:picasso:2.4.0'

Maven

   <dependency>
  <groupId>com.squareup.picasso</groupId>
  <artifactId>picasso</artifactId>
  <version>2.4.0</version>
</dependency>

If you are using Proguard, Just add the line,

-dontwarn com.squareup.okhttp.**

Download the JAR.

Samples and Library Click here.

Comments

Popular posts from this blog

Clear the app data programmatically in android

Proguard usage in Android

Singleton classes