Intellij Idea导入Android项目,报错:This Gradle plugin requires a newer IDE able to request IDE model level 3

原因 :当前项目是使用Android  Studio3.0+以上版本构建的,而idea中对android项目的构建没有使用最新的model。

解决方法:在项目gradle.properties中添加以下一行:指定构建是使用的model

android.injected.build.model.only.versioned = 3

原文地址:https://www.cnblogs.com/DolphWang/p/9267199.html