Dantotsu/app/src/main/java/ani/dantotsu/connections/crashlytics/CrashlyticsInterface.kt
2024-02-06 03:11:31 -06:00

12 lines
No EOL
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)
}