public final class

InstantApps

extends Object
java.lang.Object
   ↳ com.google.android.gms.instantapps.InstantApps

Class Overview

Entry point for Instant Apps APIs.

Summary

Fields
public static final Api<Api.ApiOptions.NoOptions> API Token to pass to addApi(Api) to enable InstantAppsApi.
Public Methods
static ActivityCompat getActivityCompat(Activity activity)
Returns a helper for Activity functionality that can be used to retrieve information about running instant apps or installed apps.
static InstantAppsClient getInstantAppsClient(Activity activity)
Creates a new instance of InstantAppsClient for use in an Activity.
static InstantAppsClient getInstantAppsClient(Context context)
Creates a new instance of InstantAppsClient for use in a non-activity Context.
static Launcher getLauncher(Context context)
Returns an API for launching instant apps by URL.
static PackageManagerCompat getPackageManagerCompat(Context context)
Returns a helper for PackageManager functionality that can be used to retrieve information about running instant apps or installed apps.
[Expand]
Inherited Methods
From class java.lang.Object

Fields

public static final Api<Api.ApiOptions.NoOptions> API

Token to pass to addApi(Api) to enable InstantAppsApi.

Public Methods

public static ActivityCompat getActivityCompat (Activity activity)

Returns a helper for Activity functionality that can be used to retrieve information about running instant apps or installed apps.

Information about instant apps will only be returned for currently running instant apps that include the package name of the calling application in a <instant:uses-app> element under the <application> element in their manifest.

Parameters
activity Activity: the activity on which to query information.
Returns
ActivityCompat

public static InstantAppsClient getInstantAppsClient (Activity activity)

Creates a new instance of InstantAppsClient for use in an Activity. Error resolutions will be automatically launched from the provided Activity, displaying UI when necessary.

Parameters
activity Activity
Returns
InstantAppsClient

public static InstantAppsClient getInstantAppsClient (Context context)

Creates a new instance of InstantAppsClient for use in a non-activity Context. Error resolutions will be automatically launched from the provided Context, displaying system tray notifications when necessary.

Parameters
context Context
Returns
InstantAppsClient

public static Launcher getLauncher (Context context)

Returns an API for launching instant apps by URL.

This method will cache a Launcher instance for the application context; you can invoke this method in many places in your code (without having to pass around a Launcher interface) without incurring extra allocations.

Parameters
context Context: the current context
Returns
Launcher

public static PackageManagerCompat getPackageManagerCompat (Context context)

Returns a helper for PackageManager functionality that can be used to retrieve information about running instant apps or installed apps.

This method will cache a PackageManagerCompat instance for the application context; you can invoke this method in many places in your code (without having to pass around a PackageManagerCompat interface) without incurring extra allocations.

Parameters
context Context: the current context
Returns
PackageManagerCompat