Reputation: 4136
Consider the following scenario,
I have a published app targeting min android version 16, and I upgrade this version to 21.
What happen to users that have the app installed in android versions below 21?
Users still would be able to use the app, but do not receive updates, or the users got their app uninstalled?
Upvotes: 2
Views: 99
Reputation: 7749
Devices not compatible with your current release will stay on the latest compatible release, until the user uninstalls your app. After that, it is not possible to install the app on that device again, aside from sideloading it.
Noteworthy is that if you later provide an apk compatible with API 16, old installations can be updated again.
This mechanism can also be used to e.g. serve different apks to tablets and phones.
Upvotes: 2