3

When i start looking for Image loading libraries for android then i found Picasso and Glide are much better then other libraries . I can integrate Picasso with eclipse but there is no document related to how use Glide library in eclipse for android project.

Reference: https://github.com/bumptech/glide

FYI: There is notes about building Glide with Intellij IDEA.

Sam Judd
  • 7,317
  • 1
  • 38
  • 38
Deep Shah
  • 1,334
  • 3
  • 20
  • 41
  • I know you might not like this comment but: Android Studio 1.0 got released, and Gradle is definitely the way Android went. Maybe time to migrate over Android Studio 1.0 and Gradle 1.0.0 ? – shkschneider Dec 17 '14 at 13:40
  • I think you mean Gradle 2.2.1 and Android Gradle Plugin 1.0.0? – Gaëtan Dec 17 '14 at 13:44

1 Answers1

4

If you are using Maven in your project, you can try this (but you probable saw this already):

<dependency>
  <groupId>com.github.bumptech.glide</groupId>
  <artifactId>glide</artifactId>
  <version>3.4.0</version>
  <type>aar</type>
</dependency>

Or you can download the jar directly from maven (at the bottom of the page) and include it in your project.

Gaëtan
  • 11,912
  • 7
  • 35
  • 45