How to include / create Glide library for eclipse?

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

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

FYI: There are notes on building Glide with Intellij IDEA.

+3


source to share


1 answer


If you are using Maven in your project, you can try this (but you've probably seen 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.

+4


source







All Articles