Android Studio出现Gradle DSL method not found:'android()'错误的解决办法

Android Studio出现Gradle DSL method not found:’android()’错误的解决办法

有时Android Studio导入项目会出现以下错误:

Gradle DSL method not found:'android()'
Possible causes:
    The project 'XXX' may be using a version of Gradle that does not contain the method.
    Open Gradle wrapper file
    The build file may be missing a Gradle plugin.
    Apply Gradle plugin

解决办法为:

删除Project目录下的 build.gradle (注意 不是 Module目录下的build.gradle)文件中的如下代码块:

android {
    compileSdkVersion xx
    buildToolVersion 'xx.x.x'
    // other code
}

然后重新编译项目即可解决问题。

你可能感兴趣的:(Android)