Package org.robolectric.shadows.gms
Class ShadowGooglePlayServicesUtil
java.lang.Object
org.robolectric.shadows.gms.ShadowGooglePlayServicesUtil
@Implements(com.google.android.gms.common.GooglePlayServicesUtil.class) public class ShadowGooglePlayServicesUtil extends Object
Calls to static method of
GooglePlayServicesUtil
will be redirected to the provided
ShadowGooglePlayServicesUtil.GooglePlayServicesUtilImpl
implementation. Use
provideImpl(GooglePlayServicesUtilImpl)
to
set the implementation instance. By default, a ShadowGooglePlayServicesUtil.GooglePlayServicesUtilImpl
is used in call
redirection. Use mocks or subclassing ShadowGooglePlayServicesUtil.GooglePlayServicesUtilImpl
to achieve desired
behaviors.-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ShadowGooglePlayServicesUtil.GooglePlayServicesUtilImpl
Class containing methods with same signatures of the static methods ofGooglePlayServicesUtil
. -
Constructor Summary
Constructors Constructor Description ShadowGooglePlayServicesUtil()
-
Method Summary
Modifier and Type Method Description static Dialog
getErrorDialog(int errorCode, Activity activity, int requestCode)
static Dialog
getErrorDialog(int errorCode, Activity activity, int requestCode, DialogInterface.OnCancelListener cancelListener)
static PendingIntent
getErrorPendingIntent(int errorCode, Context context, int requestCode)
static ShadowGooglePlayServicesUtil.GooglePlayServicesUtilImpl
getImpl()
static String
getOpenSourceSoftwareLicenseInfo(Context context)
static Context
getRemoteContext(Context context)
static Resources
getRemoteResource(Context context)
static int
isGooglePlayServicesAvailable(Context context)
static void
provideImpl(ShadowGooglePlayServicesUtil.GooglePlayServicesUtilImpl impl)
static void
reset()
static boolean
showErrorDialogFragment(int errorCode, Activity activity, int requestCode)
static boolean
showErrorDialogFragment(int errorCode, Activity activity, int requestCode, DialogInterface.OnCancelListener cancelListener)
static boolean
showErrorDialogFragment(int errorCode, Activity activity, androidx.fragment.app.Fragment fragment, int requestCode, DialogInterface.OnCancelListener cancelListener)
static void
showErrorNotification(int errorCode, Context context)
-
Constructor Details
-
ShadowGooglePlayServicesUtil
public ShadowGooglePlayServicesUtil()
-
-
Method Details
-
getImpl
-
provideImpl
-
reset
-
getRemoteContext
-
getRemoteResource
-
showErrorDialogFragment
@Implementation public static boolean showErrorDialogFragment(int errorCode, Activity activity, androidx.fragment.app.Fragment fragment, int requestCode, DialogInterface.OnCancelListener cancelListener) -
showErrorDialogFragment
@Implementation public static boolean showErrorDialogFragment(int errorCode, Activity activity, int requestCode) -
showErrorDialogFragment
@Implementation public static boolean showErrorDialogFragment(int errorCode, Activity activity, int requestCode, DialogInterface.OnCancelListener cancelListener) -
getErrorDialog
@Implementation public static Dialog getErrorDialog(int errorCode, Activity activity, int requestCode) -
getErrorDialog
@Implementation public static Dialog getErrorDialog(int errorCode, Activity activity, int requestCode, DialogInterface.OnCancelListener cancelListener) -
getErrorPendingIntent
@Implementation public static PendingIntent getErrorPendingIntent(int errorCode, Context context, int requestCode) -
getOpenSourceSoftwareLicenseInfo
-
isGooglePlayServicesAvailable
-
showErrorNotification
-