IntegrityDialogRequest

public abstract class IntegrityDialogRequest
extends Object

java.lang.Object
   ↳ com.google.android.play.core.integrity.IntegrityDialogRequest


Request for IntegrityManager.showDialog(IntegrityDialogRequest).

Summary

Nested classes

class IntegrityDialogRequest.Builder

Builder for IntegrityDialogRequest

class IntegrityDialogRequest.IntegrityResponse

Encapsulates the result of an integrity check so it can be used to build an IntegrityDialogRequest.

Public constructors

IntegrityDialogRequest()

Public methods

static IntegrityDialogRequest.Builder builder()

Creates IntegrityDialogRequest.Builder

abstract int typeCode()

The type of the integrity dialog to be shown.

abstract Activity activity()

The activity to be used to show the dialog.

abstract IntegrityResponse integrityResponse()

The previous integrity check outcome for the dialog request.

Inherited methods

Public constructors

IntegrityDialogRequest

public IntegrityDialogRequest ()

Public methods

typeCode

public abstract int typeCode ()

The type of the integrity dialog to be shown.

See the details IntegrityDialogRequest.Builder.setTypeCode(int).

Returns
int

activity

public abstract Activity activity ()

The activity to be used to show the dialog.

See the details IntegrityDialogRequest.Builder.setActivity(android.app.Activity).

Returns
Activity

integrityResponse

public abstract IntegrityResponse integrityResponse ()

The previous integrity check outcome for the dialog request.

See the details IntegrityDialogRequest.Builder.setIntegrityResponse(android.app.IntegrityDialogRequest.IntegrityResponse).

Returns
IntegrityResponse