gpt4 book ai didi

android-studio - 找不到方法 buildTypes()

转载 作者:行者123 更新时间:2023-12-03 05:06:55 25 4
gpt4 key购买 nike

enter image description here enter image description here

我正面临这个问题

Could not find method buildTypes() for arguments [build_3r52yusiev35zn4cvwce7kc4y$_run_closure1$_closure3@16d58fc] on root project 'testapp' of type org.gradle.api.Project. Open File

最佳答案

Could not find method 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有关它的详细信息。

关于android-studio - 找不到方法 buildTypes(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56818552/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com