ClerkConfigurationOptions

data class ClerkConfigurationOptions(val enableDebugMode: Boolean = false, val deviceAttestationOptions: DeviceAttestationOptions? = null, val proxyUrl: String? = null, val telemetryEnabled: Boolean = true)

Data class for enabling extra functionality on the Clerk SDK.

Constructors

Link copied to clipboard
constructor(enableDebugMode: Boolean = false, deviceAttestationOptions: DeviceAttestationOptions? = null, proxyUrl: String? = null, telemetryEnabled: Boolean = true)

Properties

Link copied to clipboard

Configuration for Android Play Integrity device attestation. Used to enhance security. Defaults to null (device attestation disabled).

Link copied to clipboard

If true, enables verbose logging for SDK operations and API calls. Defaults to false.

Link copied to clipboard

Optional proxy URL for network requests Your Clerk app's proxy URL. Required for applications that run behind a reverse proxy. Must be a full URL (for example, https://proxy.example.com/__clerk).

Link copied to clipboard