如何为eclipse包含/构建Glide库?

时间:2014-12-17 13:36:13

标签: android image-loading android-glide

当我开始寻找用于Android的Image加载库时,我发现Picasso和Glide比其他库更好。我可以将Picasso与eclipse集成,但是没有关于如何在eclipse中使用Glide库进行android项目的文档。

参考:https://github.com/bumptech/glide

仅供参考:有关于使用Intellij IDEA构建Glide的说明。

1 个答案:

答案 0 :(得分:4)

如果你在项目中使用Maven,你可以试试这个(但你可能已经看过了):

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

或者您可以直接从maven(位于页面底部)下载jar并将其包含在您的项目中。