sketchub icon

GooglePlayAvailability

BerlyOge
10 Likes
0 Comments
109 Downloads

Screenshots

About

Check whether Google Play Services are installed and current. Import this : import com.google.android.gms.common.*;

        GoogleApiAvailability googleApiAvailability = GoogleApiAvailability.getInstance();
        int status = googleApiAvailability.isGooglePlayServicesAvailable(MainActivity.this);
        if (status != ConnectionResult.SUCCESS) {
            if (googleApiAvailability.isUserResolvableError(status)) {
                googleApiAvailability.getErrorDialog(MainActivity.this, status, 2404).show();
            }
            else {

            }
            return (false);
        }
        else {
            return (true);
        }
    }

©2026 Sketchub | User Policy