Configuration

data class Configuration(configure: (SentryOptions) -> Unit?, dsn: String)

Represents a minimal configuration for the Sentry plugin.

Constructors

Link copied to clipboard
fun Configuration(configure: (SentryOptions) -> Unit? = null, dsn: String)

Properties

Link copied to clipboard
val configure: (SentryOptions) -> Unit? = null

The DSL object to build a new Sentry client when called from io.sentry.Sentry.init.

Link copied to clipboard
val dsn: String

The DSN to use when connecting to Sentry.

Sources

Link copied to clipboard