VerificationSupportStatus

@Target(allowedTargets = [AnnotationTarget.TYPE])
@IntDef(value = [0, 1, 2, 3, 4])
@Retention(value = AnnotationRetention.SOURCE)
public annotation VerificationSupportStatus


Defines the possible values for the capability status.

Summary

Constants

static final int

The capability status is unspecified.

static final int

The capability is supported.

static final int

The capability is not supported because the Android version does not support it.

static final int

The capability is not supported because the carrier does not support it.

static final int

The capability is not supported because the SIM card is not ready.

Public constructors

Constants

CAPABILITY_STATUS_UNSPECIFIED

public static final int CAPABILITY_STATUS_UNSPECIFIED = 0

The capability status is unspecified.

CAPABLE

public static final int CAPABLE = 1

The capability is supported.

INCAPABLE_DUE_TO_ANDROID_VERSION

public static final int INCAPABLE_DUE_TO_ANDROID_VERSION = 3

The capability is not supported because the Android version does not support it.

INCAPABLE_DUE_TO_CARRIER_UNSUPPORTED

public static final int INCAPABLE_DUE_TO_CARRIER_UNSUPPORTED = 2

The capability is not supported because the carrier does not support it.

INCAPABLE_DUE_TO_SIM_STATE

public static final int INCAPABLE_DUE_TO_SIM_STATE = 4

The capability is not supported because the SIM card is not ready.

Public constructors

VerificationSupportStatus

public VerificationSupportStatus()