0

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

Ang3lo
  • 77
  • 1
  • 1
  • 9

1 Answers1

2

Yes!

See this documentation: GooglePlayServicesUtil

Specifically,

GooglePlayServicesUtil.isGooglePlayServicesAvailable(Context context)

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

Community
  • 1
  • 1
DiscDev
  • 38,652
  • 20
  • 117
  • 133
  • Thanks for the solution, is there a way to initiate google play services update on button click.. i.e. open playstore intent with the correct url? – Vishesh Joshi May 29 '13 at 21:23
  • Take a look at the question I linked to in my answer - that post has a full implementation that does exactly what you're asking. http://stackoverflow.com/a/13789869/1103584 – DiscDev May 29 '13 at 22:10