- 问题:Error:This Gradle plugin requires Studio 3.0 minimum
- 解法:
- Option #0: 在gradle.properties添加android.injected.build.model.only.versioned = 3
- Option #1: Do not attempt to import the project until you upgrade to Android Studio 3.0
- Option #2: Modify the project:
- Change the project-level build.gradle to refer to com.android.tools.build:gradle:2.3.3 instead of com.android.tools.build:gradle:3.0.0-alpha6
- Change gradle/wrapper/gradle-wrapper.properties to refer to https://services.gradle.org/distributions/gradle-3.3-all.zip instead of https://services.gradle.org/distributions/gradle-4.1-milestone-1-all.zip
- Import the project and pray that its author is not depending on things that you changed
- 参考:
- 问题:Unable to make the module: related gradle configuration was not found. Please, re-import the Gradle project and try again
- 解法:View -> Tool Windows -> Gradle.Then press in Refresh Icon
- 参考:https://blog.csdn.net/chemistry_d/article/details/78871975