DeviceVerdict

public enum DeviceVerdict extends Enum<DeviceVerdict>

Holds the possible values of Device Integrity

Entries

Link copied to clipboard

The app is running on a rooted device or emulator or the Google Play Integrity request got API hooked. Ref: https://developer.android.com/google/play/integrity/verdict#device-integrity-field

Link copied to clipboard

The app is running on an Android device powered by Google Play services. The device passes system integrity checks and meets Android compatibility requirements.

Link copied to clipboard

The app is running on a device that passes basic system integrity checks. The device may not meet Android compatibility requirements and may not be approved to run Google Play services. For example, the device may be running an unrecognized version of Android, may have an unlocked bootloader, or may not have been certified by the manufacturer.

Link copied to clipboard

The app is running on an Android device powered by Google Play services and has a strong guarantee of system integrity such as a hardware-backed proof of boot integrity. The device passes system integrity checks and meets Android compatibility requirements.

Link copied to clipboard

The app is running on an Android emulator powered by Google Play services. The emulator passes system integrity checks and meets core Android compatibility requirements.

Properties

Link copied to clipboard

Returns a representation of an immutable list of all enum entries, in the order they're declared.

Link copied to clipboard
private final String name
Link copied to clipboard
private final Integer ordinal

Functions

Link copied to clipboard

Holds the possible values of Device Integrity

Link copied to clipboard
public final String getName()
Link copied to clipboard
public final Integer getOrdinal()
Link copied to clipboard
public final DeviceVerdict valueOf(String value)

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard
public final Array<DeviceVerdict> values()

Returns an array containing the constants of this enum type, in the order they're declared.