gpt4 book ai didi

android - Gradle 同步错误 : Gradle DSL method not found: 'implementation()'

转载 作者:行者123 更新时间:2023-11-30 04:59:05 25 4
gpt4 key购买 nike

当我发现 gradle sync 有问题时,我正在使用 Android Studio 开发 flutter 应用程序。

我最近更新了 Android Studio 并将项目迁移到 AndroidX(重构 -> 迁移到 Android X),从那时起我在执行 gradle 同步时总是遇到这个错误。我在我的 app/build.gradle 文件中使用“编译”而不是“实现”时遇到了同样的错误,实际上安装了最新版本的 Kotlin。

特别是这是我得到的错误:

ERROR: Gradle DSL method not found: 'implementation()'
Possible causes:
The project 'android' may be using a version of the Android Gradle plug-in that does not contain the method (e.g. 'testCompile' was added in 1.1.0).
Upgrade plugin to version 3.5.1 and sync project

The project 'android' may be using a version of Gradle that does not contain the method.
Open Gradle wrapper file

The build file may be missing a Gradle plugin.
Apply Gradle plugin

现在:我读了这篇文章并尝试按照 3 条建议解决它,结果是这样的:

升级插件到3.5.1版本并同步项目:

单击此建议我收到此消息:Unexpected Error

所以我打开 android/build.gradle 并将这一行添加到构建脚本规则的“依赖项”括号中:

buildscript {
ext.kotlin_version = '1.3.10'
repositories {
google()
jcenter()
}

dependencies {
classpath 'com.android.tools.build:gradle:3.5.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}

但错误不断出现。

项目“android”可能正在使用不包含该方法的 Gradle 版本。

打开 Gradle 包装器文件

所以我打开gradle-wrapper.properties,这是我在里面找到的(我不知道这里有没有问题)

distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.3-all.zip

最后,当我点击

时会发生这种情况

构建文件可能缺少 Gradle 插件。

应用Gradle插件

打开了一个插件列表,我真的不知道应该实现哪个

此外,这是我的app/build.gradle文件,因此您可以阅读调用“implementation ()”方法的位置。

def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
localPropertiesFile.withReader('UTF-8') { reader ->
localProperties.load(reader)
}
}

def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}

def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '1'
}

def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '1.0'
}

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

android {
compileSdkVersion 28

sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}

lintOptions {
disable 'InvalidPackage'
}

defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.example.honoo"
minSdkVersion 16
targetSdkVersion 28
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}

buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
}
}
}

flutter {
source '../..'
}

dependencies {
def core_version = '1.1.0'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation "com.android.support:support-v4:28.0.0"
implementation "androidx.core:core-ktx:$core_version"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"

}

此外,此文件还在“GradleException”符号上显示“无法解析符号”错误。

我认为这是由于之前的问题造成的,但我不确定。

我希望能帮助我,也许这是我所缺少的。谢谢。

最佳答案

删除 testImplementation 和 androidTestImplementations。大概问题就解决了。

关于android - Gradle 同步错误 : Gradle DSL method not found: 'implementation()' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58548096/

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