jar文件没有被带有gradle的android项目识别

时间:2013-12-27 12:21:41

标签: android gradle

我有一个本地文件{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项目:/

1 个答案:

答案 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部分来纠正它。