我有一个本地文件{projectroot}/libs/javacsv.jar
我将它包含在我的build.gradle中,它也在我的项目的根目录中,如下所示
dependencies {
classpath 'com.android.tools.build:gradle:0.7.0'
compile fileTree(dir: 'libs', include: '*.jar')
}
然而,当我编译我的项目时,我仍然得到
评估根项目'myproject'时出现问题。没有这样的 property:为类编译: org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler
我怎么能解决这个问题我只想用我的libs dir编译我的android项目:/
答案 0 :(得分:2)
build.gradle
中有两个依赖项部分:
buildscript {
repositories {
//repositories for build script dependencies
}
dependencies {
//dependencies for build script
}
}
apply plugin: 'android'
repositories {
//repositories for project dependencies
}
android {
....
}
dependencies {
//dependencies for project
}
所以移动你的libs部分来纠正它。