我的应用程序的minSdkVersion是14,而targetSdkVersion是21但Google Play判断它只支持Android 4.0~4.4

时间:2015-01-17 02:36:21

标签: android android-gradle google-play version android-5.0-lollipop

compileSdkVersion 21
buildToolsVersion "21.1.2"

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

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

1 个答案:

答案 0 :(得分:-3)

我已修好了。 只需添加:

maxSdkVersion 21

在附近的minSdkVersion的gradle.build中。