如何向gradle.build添加依赖项

时间:2014-11-26 11:32:26

标签: android android-studio

我正在使用Android Studio,我的活动包括ViewPager。为此我必须安装包(Android支持存储库和Android支持库)。现在我已经安装了这些,我打开了 gradle.build ,这就是我所看到的:

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.13.2'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

我的问题:

我应该添加什么?我应该在哪里添加它?

另外,我无法在我的电脑中找到SDK:/。一点帮助将非常感激。

2 个答案:

答案 0 :(得分:3)

Android使用多项目构建设置。您现有的文件是MAIN build.gradle文件。

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.13.2'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
        // this is where you need to put dependencies of your BUILD SCRIPT
    }
}

allprojects {
    repositories {
        jcenter()
    }

    dependencies {
      compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.1'
      compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.1'
      // This is where you put dependencies EVERYONE of your modules need.
    }


}

在main build.gradle的子目录中,存在各个build.gradle文件。

模块A

    dependencies {
      // This is where you put dependencies, your module need.
    }

模块B

    dependencies {
      // This is where you put dependencies, your module need.
    }

答案 1 :(得分:0)

有多个gradle文件。其中一个位于项目目录中。相同的名称(build.gradle)。找到它并将你的依赖项放在那里。

要查找SDK路径:文件 - >项目结构 - > SDK位置。 (Android Studio v0.8.14)