【发布时间】: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