Just a short question. Let's say I've published an app on the Play Store:
- versionCode = 1
- minSdk = 8
The day after I publish the same app but:
- versionCode = 2
- minSkd = 11
How will the users be affected? Devices with API level < 11, will continue see first version, or none? Devices with API level >= 11 will see, only version 2, or both?
Many thanks.