0

我从 github 下载了一个项目,该项目没有附带 RoundedImageView 所需的库,该库是项目试图查找的库。我对 Android 有点陌生,并且没有任何使用 build.gradle 文件的经验,根据库的自述文件,该文件需要进行编辑。

有人可以一步一步告诉我如何导入这个库吗?这就是我现在所做的: 1. 从这里下载 javadoc.jar 文件

  1. 将我的 gradle 文件更改为如下所示:

    buildscript{
        repositories{
            jcenter() //not sure what this is, it was already here
            mavenCentral() //added this
        }
        dependencies{
            classpath 'com.android.tools.build:gradle:0.12.+' //already here
            compile 'com.makeramen:roundedimageview:1.3.0' //added this
        }
    }
    allprojects{
        repositories{
            jcenter() //already here
            mavenCentral() // added this
       }
    }
    

我还创建了一个 libs 文件夹,将 jar 文件放在那里并将其添加到构建路径中……但没有什么能摆脱我的错误。

4

1 回答 1

1
  1. 您无需添加mavenCentral(). JCenter 是 Maven Central 的超集。
  2. 添加依赖项以buildScript使它们可用于构建脚本(因此得名),而不是您尝试构建的项目。
  3. 将依赖项添加到allprojects闭包(或您需要它的项目)。
  4. 当然,您不需要手动下载任何内容。这就是依赖管理器的用途。

buildscript{ repositories{ jcenter() //not sure what this is, it was already here } dependencies{ classpath 'com.android.tools.build:gradle:0.12.+' //already here } } allprojects{ repositories{ jcenter() //already here } dependencies{ compile 'com.makeramen:roundedimageview:1.3.0' //added this } }

于 2014-10-05T08:03:37.430 回答