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