我正面临这个问题
在类型为org.gradle.api.Project的根项目'testapp'上找不到参数[build_3r52yusiev35zn4cvwce7kc4y $ _run_closure1 $ _closure3 @ 16d58fc]的方法buildTypes()。 打开文件
答案 0 :(得分:1)
找不到方法buildTypes()
那是因为您错误地将buildTypes
放置在build.gradle
内。它必须在模块 android
中的build.gradle
块中。像这样:
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
buildToolsVersion "29.0.0"
defaultConfig {
// your app config
...
}
// your buildTypes here. It's must be inside the android block
buildTypes {
...
}
}
dependencies {
// your dependencies.
...
}
您需要查阅The module-level build file文档以了解详细信息。
您当前的build.gradle
图片看起来像您项目的根 build.gradle
。访问The top-level build file以获得详细信息。