gpt4 book ai didi

android - 错误 :(20, 0) 找不到 Gradle DSL 方法: 'compile()'

转载 作者:可可西里 更新时间:2023-10-31 22:04:09 24 4
gpt4 key购买 nike

我看过其他相关的,但似乎没有一个能解决我在 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()’可能原因:项目'Project'可能使用了不包含该方法的Gradle版本。

打开 Gradle 包装器文件构建文件可能缺少 Gradle 插件。应用 Gradle 插件”

我做错了什么?

最佳答案

您不能将编译依赖项添加到global build.gradle 文件。删除 global build.gradle 文件中的第二个依赖 block 将修复错误。

关于android - 错误 :(20, 0) 找不到 Gradle DSL 方法: 'compile()',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30116541/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com