appPinConfig

fun appPinConfig(block: AppPinConfig.() -> Unit)

Configures the application PIN authenticator settings.

This method allows customization of PIN-based authentication behavior, including PIN collection UI, validation rules, and storage settings.

Example:

appPinConfig {
pinCollector = { prompt -> myCustomPinCollector(prompt) }
}

Parameters

block

Configuration block for AppPinConfig

See also