【问题标题】:Adding dependencies in Gradle在 Gradle 中添加依赖项
【发布时间】:2014-02-04 19:30:21
【问题描述】:

我正在尝试使用 Gradle 将我的 Android 项目从 IDEA 移动到 Android Studio。 但是,我在依赖项方面遇到了困难。我删除了我的“lib”目录,因此可以从 Maven 中检索这些罐子。但是如何正确添加它们呢?

例如org.apache.commons.lang3

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.7.+'
    }
}
apply plugin: 'android'

dependencies {
    compile 'com.google.android.gms:play-services:4.1.+'
    compile 'org.apache.commons:commons-lang3:2.6.+'
}

android {
    compileSdkVersion 19
    buildToolsVersion "19.0.1"

    sourceSets {
        main {
            manifest.srcFile 'AndroidManifest.xml'
            java.srcDirs = ['src']
            resources.srcDirs = ['src']
            aidl.srcDirs = ['src']
            renderscript.srcDirs = ['src']
            res.srcDirs = ['res']
            assets.srcDirs = ['assets']
        }

        // Move the tests to tests/java, tests/res, etc...
        instrumentTest.setRoot('tests')

        // Move the build types to build-types/<type>
        // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
        // This moves them out of them default location under src/<type>/... which would
        // conflict with src/ being used by the main source set.
        // Adding new build types or product flavors should be accompanied
        // by a similar customization.
        debug.setRoot('build-types/debug')
        release.setRoot('build-types/release')
    }
}

这会导致:

Failed to refresh Gradle project 'idoms-android'
         Could not find commons:commons-lang3:3.0.

它似乎在 Maven 存储库中。

【问题讨论】:

  • 我不知道它是否有任何关系,但您的依赖项显示commons-lang3:2.6.+,错误显示commons-lang3:3.0,不同版本。

标签: android maven gradle android-gradle-plugin


【解决方案1】:

您在顶层缺少这个(即androiddependencies 的对等点):

repositories {
    mavenCentral()
}

buildscript 块有repositoriesdependencies 用于构建过程。您还需要在顶层为您的项目本身的依赖项提供 repositoriesdependencies

【讨论】:

    【解决方案2】:
    dependencies {
        compile 'org.apache.commons:commons-lang3:3.4'
    }
    

    在您的 build.gradle 文件中添加以上行,这是最新版本。

    您也可以从这里查看:

    mvnrepository, Apache Commons Lang » 3.4

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2017-06-02
      • 2014-07-26
      • 2023-03-11
      • 1970-01-01
      • 1970-01-01
      • 2015-03-17
      • 1970-01-01
      • 2020-11-01
      相关资源
      最近更新 更多