Sandah Aung
Sandah Aung

Reputation: 6188

The most common Google Play Services version

My app is supporting Android 4.0.3+. Setting Google Play Services too high forces the user to download it. Setting it too low may result in the API not performing up to expectations. The current version that I use is 6.5.87 but I know that it is too high. What is the appropriate version?

Upvotes: 0

Views: 205

Answers (1)

Bevor
Bevor

Reputation: 8605

You should use the latest version and add a check if the version installed on the device is too low. If yes, provide some info window to force the user to download the latest one. I do that and I was neither confronted with complaints of users nor did any user have problems. It's not your fault that people don't install updates.

See also: http://developer.android.com/reference/com/google/android/gms/common/GoogleApiAvailability.html#isGooglePlayServicesAvailable%28android.content.Context%29

Upvotes: 1

Related Questions