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

报错信息

Error:This Gradle plugin requires a newer IDE able to request IDE model level 3. For Android Studio this means version 3.0+

字面意思上看,这个Gradle需要使用在AndroidStudio 3.0以上的版本

解决方法就是升级AndroidStudio版本到3.0以上
如果不想升级也可以,就在gradle.properties中添加

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

然后你运行的时候可能会发现无法安装

《Error:This Gradle plugin requires a newer IDE able to request IDE model level 3. For Android Stud...》 无法安装

错误提示:

Installation failed with message INSTALL_FAILED_TEST_ONLY.
It is possible that this issue is resolved by uninstalling an existing version of the apk if it is present,and then re-installing.
WARNING:Uninstalling will remove the application data!
Do you want to uninstall the existing application? 

解决方法:在gradle.properties中添加

android.injected.testOnly=false

两条一起复制:

android.injected.build.model.only.versioned = 3
android.injected.testOnly=false
    原文作者:爱吃馒头的二饼
    原文地址: https://www.jianshu.com/p/49b350245073
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞