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.
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