Gradle DSL method not found: 'android()

解决Gradle DSL method not found: ‘android()’

on 2015 年 6 月 2 日

最近导入as的项目出了这样的问题

Gradle DSL method not found: 'android()_第1张图片

这个问题困扰了我很长时间,好吧,搜了半天全都是runProguard的,最后在stackoverflow上搜到解决办法了:
http://stackoverflow.com/questions/27735646/android-studio-gradle-dsl-method-not-found-android-error17-0

解决方法

删掉最外层的build.gradle中的

android {
    compileSdkVersion 19
    buildToolsVersion '21.1.1'
}

然后重新刷新就ok了

Gradle DSL method not found: 'android()_第2张图片

是因为外面的和项目里面的冲突了

你可能感兴趣的:(Gradle DSL method not found: 'android())