13 lines
312 B
Kotlin
13 lines
312 B
Kotlin
/*
|
|
* Copyright © 2014-2024 The Android Password Store Authors. All Rights Reserved.
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
*/
|
|
|
|
@file:Suppress("Unused", "UNUSED_PARAMETER")
|
|
|
|
package io.sentry
|
|
|
|
/** Stubs for the Sentry SDK */
|
|
public object Sentry {
|
|
public fun configureScope(callback: (Scope) -> Unit) {}
|
|
}
|