Search code examples
google-maps-api-2google-maps-android-api-2google-play-services

Google Play Services - Updated?


Is there any way to check if:

  1. The Google Play Service is installed
  2. The version of the installed version, is or not the minimum version to run the Google Maps v2?

Thanks in advance


Solution

  • Yes!

    See this documentation: GooglePlayServicesUtil

    Specifically,

    GooglePlayServicesUtil.isGooglePlayServicesAvailable(Context context)
    

    It might also be a good idea to look at this question