当前位置:   article > 正文

【报错记录】The project is using an incompatible version (AGP 8.3.0-alpha01) of the Android Gradle plugin.

the project is using an incompatible version (agp 8.3.0) of the android grad

The project is using an incompatible version (AGP 8.3.0-alpha01) of the Android Gradle plugin. Latest supported version is AGP 8.1.3.

1. 背景

打开别人的kotlin项目,出现如上报错。简单查一下,错误说明本人电脑的Android Studio最高只支持到gradle 8.1.3,无法使用8.3.0。
在这里插入图片描述

在这里插入图片描述
在这里插入图片描述
升级Android Studio版本是不可能升级的,只能降gradle版本来寻求生成了。

2. 操作

2.1 降gradle版本

/gradle/wrapper/gradle-wrapper.properties,找一个可以运行成功的本地kotlin项目,复制过来。

distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
  • 1

在这里插入图片描述
TryAgain,继续报错:
Minimum supported Gradle version is 8.3-rc-2. Current version is 8.0.
在这里插入图片描述
简单查一下,错误说明,插件最低支持的gradle是8.3-rc-2,现在是8.0,那升级gradle是不可能升级的,只能降级插件版本。

2.2 降插件版本

项目下的build.gradle.kts。好像没看见版本号呀,这怎么降级?不慌,继续,刚刚那个可以运行成功的本地kotlin项目,复制过来。

    id("com.android.application") version "8.1.3" apply false
    id("org.jetbrains.kotlin.android") version "1.8.10" apply false
  • 1
  • 2

在这里插入图片描述
TryAgain,继续报错:
在这里插入图片描述

2.3 同步插件

app/build.gradle.kts,继续,刚刚那个可以运行成功的本地kotlin项目,复制过来。

    id("com.android.application")
    id("org.jetbrains.kotlin.android")
  • 1
  • 2

在这里插入图片描述

3. 结果

操作之后成功安装。

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/252638
推荐阅读
相关标签
  

闽ICP备14008679号