我的app的minSdkVersion是14,targetSdkVersion是21但是Google Play判断它只支持Android 4.0~4.4

My app's minSdkVersion is 14 and targetSdkVersion is 21 but Google Play judge it just support Android 4.0~4.4

compileSdkVersion 21
buildToolsVersion "21.1.2"

defaultConfig {
    applicationId "me.drakeet.seashell"
    minSdkVersion 14
    targetSdkVersion 21
    versionCode 80
    versionName "2.2"
}

以上代码在我的gradle.build,而我的应用运行在AndroidLollipop(5.0)中完美,所以我很疑惑为什么Play判断和限制它只支持Android 4.0~4.4,为什么不是5.0+? 谢谢!

我已经修复了。 只需添加:

maxSdkVersion 21

在 gradle.build 附近的 minSdkVersion.