我遇到了问题:
错误:(19,0)未找到Gradle DSL方法:' android()'
- 项目' x'可能正在使用gradle的版本,它不包含方法
打开gradle包装文件
- 构建文件可能缺少一个gradle插件
应用gradle插件
的build.gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "23.0.0 rc3"
compileOptions {
encoding "UTF-8"
}
defaultConfig {
applicationId "es.albertoramos.pfcalbertoramos"
minSdkVersion 15
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.2.1'
}
app.gradle:
AIR_2015xxxxT0yyyyyyyy.cfg
如何解决这个问题?
答案 0 :(得分:5)
删除:
android {
buildToolsVersion '23.0.0'
}
dependencies {
}
来自您的顶级build.gradle
。