找不到方法buildTypes()

时间:2019-06-29 15:02:28

标签: android-studio gradle android-gradle

enter image description here enter image description here

我正面临这个问题

  

在类型为org.gradle.api.Project的根项目'testapp'上找不到参数[build_3r52yusiev35zn4cvwce7kc4y $ _run_closure1 $ _closure3 @ 16d58fc]的方法buildTypes()。   打开文件

1 个答案:

答案 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以获得详细信息。