gpt4 book ai didi

android - Android,Gradle:通过buildType名称设置testBuildType

转载 作者:行者123 更新时间:2023-12-03 03:36:26 30 4
gpt4 key购买 nike

我的build.gradle:

android {
testBuildType "stage"
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
prod {
// This copies the debuggable attribute and debug signing configurations.
initWith(debug)
}
stage {
initWith(debug)
// some code here
}
dev {
initWith(debug)
// some code here
}
}
}

如您所见,我将testBuildType作为字符串。但是我想通过 buildType.name 设置。

像这样:
testBuildType buildType.stage

我收到此错误:
Error:(56, 0) Could not get unknown property 'stage' for BuildType container of type org.gradle.api.internal.FactoryNamedDomainObjectContainer.

可能吗?

最佳答案

您需要将testBuildType元素放入buildTypes块中

关于android - Android,Gradle:通过buildType名称设置testBuildType,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45418722/

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