Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Crash reporting, ANR (Application Not Responding) detection, and Jetpack Compose tracking.
app/build.gradle.kts
dependencies { implementation("io.traceback:traceback-android:1.2.0") }
Application
package com.example.app import android.app.Application import io.traceback.android.core.TracebackAndroid class MainApplication : Application() { override fun onCreate() { super.onCreate() TracebackAndroid.init(this) { options -> options.dsn = "https://tb_live_key@ingest.traceback.dev/1" options.environment = "production" options.anrEnabled = true } } }