VerificationSupportStatus

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


Defines the possible values for the capability status.

Summary

Constants

const Int

The capability status is unspecified.

const Int

The capability is supported.

const Int

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

const Int

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

const Int

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

Public constructors

Constants

CAPABILITY_STATUS_UNSPECIFIED

const val CAPABILITY_STATUS_UNSPECIFIED = 0: Int

The capability status is unspecified.

CAPABLE

const val CAPABLE = 1: Int

The capability is supported.

INCAPABLE_DUE_TO_ANDROID_VERSION

const val INCAPABLE_DUE_TO_ANDROID_VERSION = 3: Int

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

INCAPABLE_DUE_TO_CARRIER_UNSUPPORTED

const val INCAPABLE_DUE_TO_CARRIER_UNSUPPORTED = 2: Int

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

INCAPABLE_DUE_TO_SIM_STATE

const val INCAPABLE_DUE_TO_SIM_STATE = 4: Int

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

Public constructors

VerificationSupportStatus

VerificationSupportStatus()