gpt4 book ai didi

Android gradle build 错误 :(9, 0) Gradle DSL 方法未找到 : 'compile()' .

转载 作者:IT老高 更新时间:2023-10-28 11:08:06 25 4
gpt4 key购买 nike

我在尝试同步我的项目时遇到以下构建错误:

Error:(9, 0) Gradle DSL method not found: 'compile()'
Possible causes:The project 'AlexTest' may be using a version of Gradle that does not contain the method.
The build file may be missing a Gradle plugin.
link: Apply Gradle plugin

我已经尝试在底部的那个链接中应用他们链接到我的每一个 gradle 插件,但同样的问题,所以我得出结论,第一个错误是原因。

这是 AlexTest 的 build.gradle 文件(项目目录):

buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.13.2'
compile 'com.google.android.gms:play-services:6.1.11'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

allprojects {
repositories {
jcenter()
}
}

我认为这是它遇到问题的 gradle 文件。但我不确定它指的是什么方法。

这里还有它也提到的 gradle-wrapper.properties:

#Mon Nov 10 01:06:12 PST 2014
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.1-all.zip

也许distributionUrl中的gradle版本需要匹配依赖中的那个?

我在 app 目录本身也有一个 build.gradle 文件 - 低一级,虽然我不认为这就是它所指的,但它是:

apply plugin: 'com.android.application'

android {
compileSdkVersion 20
buildToolsVersion "21.1.1"

defaultConfig {
applicationId "com.snappiesticker.alextest"
minSdkVersion 16
targetSdkVersion 20
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.google.android.gms:play-services:6.1.+'
}

最佳答案

I have tried applying every single gradle plugin they link me to in that link on the bottom, yet same issue, so I conclude that the first error is the cause.

正确。

Here is the build.gradle file for AlexTest (the project directory):

你会注意到这个文件包含一个代码注释:

    // NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files

从该文件中删除 compile 'com.google.android.gms:play-services:6.1.11' 行。将 compile 'com.google.android.gms:play-services:6.1.+' 保留在另一个 build.gradle 文件中。

buildscript 中的 dependencies 闭包仅适用于 Gradle 插件。在模块的 build.gradle 文件中找到的顶级 dependencies 闭包用于应用程序依赖项。

关于Android gradle build 错误 :(9, 0) Gradle DSL 方法未找到 : 'compile()' .,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26851230/

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