mirror of
https://github.com/rebelonion/Dantotsu.git
synced 2026-01-27 06:51:03 +00:00
12 lines
350 B
Kotlin
12 lines
350 B
Kotlin
package ani.dantotsu.connections.crashlytics
|
|
|
|
import android.content.Context
|
|
|
|
interface CrashlyticsInterface {
|
|
fun initialize(context: Context)
|
|
fun logException(e: Throwable)
|
|
fun log(message: String)
|
|
fun setUserId(id: String)
|
|
fun setCustomKey(key: String, value: String)
|
|
fun setCrashlyticsCollectionEnabled(enabled: Boolean)
|
|
} |