如何在Android Studio Flutter中降级KotlinGradle插件

gab6jxml  于 2023-05-29  发布在  Kotlin
关注(0)|答案(2)|浏览(508)

我在Flutter项目工作,在升级gradel到最新版本后面临这个问题,有没有办法在android studio中降级KotlinGradle插件版本或回到以前的版本?
* What went wrong: The Android Gradle plugin supports only Kotlin Gradle plugin version 1.5.20 and higher. The following dependencies do not satisfy the required version: project ':image_gallery_saver' -> org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.72
我尝试了这个解决方案,但不起作用
Android/build.gradle

classpath 'com.android.tools.build:gradle:7.3.1'

classpath 'com.android.tools.build:gradle:7.2.2'
android/gradle/wrapper/gradle-wrapper.properties

distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip

distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip

eeq64g8w

eeq64g8w1#

您可以在build.gradle(根级别build.gradle)中更改Kotlin版本

ext.kotlin_version = '1.3.72'

**注意:**插件不建议降级Kotlin版本。

bogh5gae

bogh5gae2#

我将我的Android Studio版本降级到了以前的版本,现在包运行正常。

相关问题