将jar添加到Gradle

时间:2013-10-27 19:52:21

标签: android gradle build.gradle

这是我的build.gradle

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

repositories {
    mavenCentral()
}

android {
    compileSdkVersion 17
    buildToolsVersion "17.0.0"

    defaultConfig {
        minSdkVersion 14
        targetSdkVersion 18
    }
}

dependencies {
    compile 'com.android.support:support-v4:+'
    compile file 'volley.jar'
}

当我尝试构建它时,此错误会出现:

Gradle: A problem occurred evaluating project ':Name'.
> No such property: file for class:     org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler

如果我尝试

,则会出现相同的错误
gradle clean
项目目录中的

2 个答案:

答案 0 :(得分:5)

这是compile files

的拼写错误
dependencies {
    compile files('volley.jar')
}

答案 1 :(得分:0)

现在,编译从2018年开始变为实现

所以

implementation files('volley.jar')