My application minimum sdk version is 17 and i have map, that old google play services do not support it. I want to know from which versions of google play service do not support this sdk version?
Asked
Active
Viewed 1,129 times
2 Answers
0
Here is a list of required SDK's for different android versions:
https://developer.android.com/distribute/best-practices/develop/target-sdk
check, it will help you.

T.Todua
- 53,146
- 19
- 236
- 237
0
i find another solution to my problem. in fact i wanted to handle the devices that not support google map because their google play services are not updated. so i use code below
int resultCode = GoogleApiAvailability.getInstance().isGooglePlayServicesAvailable(this);
if (resultCode != ConnectionResult.SUCCESS) {
//my handling code
}
to handle.

T.A
- 11
- 1
- 6