在 android gradle 构建文件中,我有以下闭包:
android {
compileSdkVersion 21
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.mycoolapp"
minSdkVersion 16
targetSdkVersion 21
versionCode 41
versionName "3.0"
}
}
我不希望我的应用在 Marshmallow 上运行。我的 targetSdkVersion 是 21,Marmallow 是 23。假设我有一部 Marshmallow 手机,如果我去 Play 商店,我的应用会出现在列表中吗?
我的第二个问题是如何阻止我的应用出现在棉花糖设备的谷歌 Play 商店中?