androidgoogle-app-invites

Check availability of Google App Invites


When I call to startActivityForResult to show Google App Invites activity, I get an ActivityNotFoundException: "No Activity found to handle Intent act=com.google.android.gms.appinvite.ACTION_APP_INVITE"

Is there a way to check if I can use App Invites in a device before try to launch it? (I don't want to only check if device can handle com.google.android.gms.appinvite.ACTION_APP_INVITE)


Solution

  • It seems the reason because I was receiving the error is that Google Play Services were not installed.

    So I can check availability using:

    GoogleApiAvailability.getInstance().isGooglePlayServicesAvailable(this);