如何仅在调试模式下使用特定的 minSdkVersion?我想将 minSdkVersion 21 用于调试模式,但将 minSdkVersion 15 用于发布。我不想为此使用口味,因为会带来麻烦。
我认为可能是这样的(但不工作):
defaultConfig {
applicationId "blacktoad.com.flapprototipo"
minSdkVersion 15
debug{
minSdkVersion 21
}
targetSdkVersion 23
versionCode 42
versionName "1.72"
multiDexEnabled true
}