I'm working on an Android app, that targets Android API versions : 17 --> 23
, I extensively use the google play services for 2 core features :
- GeoLoc : with FusedLocationApi
- Google maps.
Now, I'm using the google play services version 8.1
, it works fine on all the devices except ones with Android 4.2 (API 17) displaying me the message : Google Play services out of date. Requires 7571000 but found 1015
Is there any specific google play services version I could downgrade to, to be able to use the FusedLocation + Google maps (with basic callbacks) for all Android versions from API 17 to 23.
Thank you.