我看过其他相关但似乎没有解决我在Gradle中的问题。
这是我的Build Gradle(模块应用程序)
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.example.abdul_000.project"
minSdkVersion 9
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile files('libs/android-support-v13.jar')
compile 'com.android.support:appcompat-v7:22.0.0'
}
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.0.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
dependencies {
compile 'com.android.support:support-v4:19.0.0'
compile fileTree(dir: 'libs', include: ['*.jar'])
} apply plugin: 'application'
allprojects {
repositories {
jcenter()
}
}
}
它给了我 "错误:(20,0)未找到Gradle DSL方法:' compile()' 可能的原因:项目'项目'可能正在使用不包含该方法的Gradle版本。
打开Gradle包装文件 构建文件可能缺少Gradle插件。应用Gradle插件"
我做错了什么?
答案 0 :(得分:3)
您无法将编译依赖项添加到全局 build.gradle
文件中。删除全局 build.gradle
文件中的第二个依赖项块会修复错误。