Skip to content

Instantly share code, notes, and snippets.

@a-v-ebrahimi
Created July 2, 2014 12:57
Show Gist options
  • Save a-v-ebrahimi/1ee31b00f0a21c63dfc4 to your computer and use it in GitHub Desktop.
Save a-v-ebrahimi/1ee31b00f0a21c63dfc4 to your computer and use it in GitHub Desktop.
Check Google Play Services Is Available
private void checkGooglePlayServicesIsAvailable() {
int errorCode = GooglePlayServicesUtil.isGooglePlayServicesAvailable(this);
if (errorCode != ConnectionResult.SUCCESS) {
GooglePlayServicesUtil.getErrorDialog(errorCode, this, 0).show();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment