Reputation: 11645
I couldn't figure out from documentation, so I am asking here.
After updating the app in google play, are old devices still be able to use the older version ? Or is my app seen only from devices with 24+ ?
Is it in general recommended to upgrade to 24+ to use java8 ?
Upvotes: 0
Views: 94
Reputation: 562
You can handle each situation you need for minSDK 24+ like this:
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.N){
// Devices with SDk 24+
} else {
// Devices with SDK 24-
}
Upvotes: 1