commonMain.co.touchlab.crashkios.bugsnag.BugsnagCalls.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bugsnag Show documentation
Show all versions of bugsnag Show documentation
Kotlin Native iOS Crash Report Library
The newest version!
package co.touchlab.crashkios.bugsnag
interface BugsnagCalls {
fun logMessage(message: String)
fun sendHandledException(throwable: Throwable)
fun sendFatalException(throwable: Throwable)
fun setCustomValue(section: String, key: String, value: Any)
}
expect class BugsnagCallsActual() : BugsnagCalls