Я разрабатывал приложение для создания флаттера, используя Android Studio, когда обнаружил, что существует проблема с синхронизацией с помощью gradle.
Я недавно обновил Android Studio и перенес проект в AndroidX (Refactor -> Migrate to Android X). и с тех пор я всегда получаю эту ошибку при выполнении Gradle Sync. В моем app / build.gradle файле я получаю ту же ошибку, используя 'compile' вместо 'реализация', фактически установлена последняя версия 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 и синхронизируйте проект:
Нажав на это предложение, я получаю следующее сообщение: Неожиданная ошибка
Поэтому я открываю 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 файл, так что вы можете прочитать, где вызывается метод 'creation ()'.
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».
Я думаю, что это связано с предыдущей проблемой, но я не уверен в этом.
Я надеюсь, что смогу приземлитьсярука, может быть, это то, что я скучаю. Спасибо.