欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Error:This Gradle plugin requires a newer IDE able to request IDE model level 3. For Android Studio

程序员文章站 2022-04-17 11:01:20
...

1. 错误描述

Error:This Gradle plugin requires a newer IDE able to request IDE model level 3. For Android Studio .

2. 错误原因

项目的Gradle版本较高,AndroidStudio至少要升到3.0,但是有的项目因各种原因只能用3.0以下版本;

3. 解决方案

修改build.gradle内的gradle版本号为2.x.x

 dependencies {
        classpath 'com.android.tools.build:gradle:2.3.3'

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

 

相关标签: AndroidStudio