861ca58a58
* build-logic: remove error path in Sentry plugin * gradle: fix UnstableApiUsage warning * build-logic: configure Sentry Gradle Plugin * app: set traces sample-rate to 1.0 * sentry-stub: init * app: populate Sentry user field with feature flags
10 lines
203 B
Kotlin
10 lines
203 B
Kotlin
@file:Suppress("Unused", "UNUSED_PARAMETER")
|
|
|
|
package io.sentry
|
|
|
|
import io.sentry.protocol.User
|
|
|
|
public class Scope {
|
|
public var user: User? = null
|
|
public fun setTag(tag: String, value: String) {}
|
|
}
|