0

I uploaded an APK to the app store, it's targeting lollipop, but on Google Play Store it says "API levels 14-19". I can't seem to figure out why the max sdk level is stuck at 19.

compileSdkVersion 22 buildToolsVersion "21.1.2"

defaultConfig {
    applicationId "be.appwise.dentir"
    minSdkVersion 14
    targetSdkVersion 22
    versionCode 1
    versionName "1.0"
TomCB
  • 3,983
  • 9
  • 40
  • 66

2 Answers2

0

Change your version code and versionName to

versionCode 2
versionName "1.1"

and then try upadting your app on the google playstore

Arlind Hajredinaj
  • 8,380
  • 3
  • 30
  • 45
0

thanks a lot for the input, which brought me to the solution: search in the whole project for maxSdk. I found it, is was defined by one of my used libraries, so I deleted it for now. Now I can target +14.

TomCB
  • 3,983
  • 9
  • 40
  • 66