Reputation: 1374
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.
Upvotes: 3
Views: 2267
Reputation: 12552
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.
Upvotes: 4