[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-sentry-sentry-android-sdk":3,"mdc-c8pcpx-key":39,"related-org-sentry-sentry-android-sdk":8146,"related-repo-sentry-sentry-android-sdk":8324},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":27,"repoUrl":28,"updatedAt":29,"license":30,"forks":31,"topics":32,"repo":34,"sourceUrl":37,"mdContent":38},"sentry-android-sdk","setup Sentry SDK for Android","Full Sentry SDK setup for Android. Use when asked to \"add Sentry to Android\", \"install sentry-android\", \"setup Sentry in Android\", or configure error monitoring, tracing, profiling, session replay, or logging for Android applications. Supports Kotlin and Java codebases.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"sentry","Sentry","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fsentry.png","getsentry",[13,17,20,23,24],{"name":14,"slug":15,"type":16},"Observability","observability","tag",{"name":18,"slug":19,"type":16},"Android","android",{"name":21,"slug":22,"type":16},"SDK","sdk",{"name":9,"slug":8,"type":16},{"name":25,"slug":26,"type":16},"Debugging","debugging",237,"https:\u002F\u002Fgithub.com\u002Fgetsentry\u002Fsentry-for-ai","2026-07-12T06:08:32.396344","Apache-2.0",30,[33],"tag-production",{"repoUrl":28,"stars":27,"forks":31,"topics":35,"description":36},[33],"Teach your AI coding assistant how to use Sentry - setup, debugging, alerts, and more","https:\u002F\u002Fgithub.com\u002Fgetsentry\u002Fsentry-for-ai\u002Ftree\u002FHEAD\u002Fskills-legacy\u002Fsentry-android-sdk","---\nname: sentry-android-sdk\ndescription: Full Sentry SDK setup for Android. Use when asked to \"add Sentry to Android\", \"install sentry-android\", \"setup Sentry in Android\", or configure error monitoring, tracing, profiling, session replay, or logging for Android applications. Supports Kotlin and Java codebases.\nlicense: Apache-2.0\ncategory: sdk-setup\nparent: sentry-sdk-setup\ndisable-model-invocation: true\n---\n\n> [All Skills](..\u002F..\u002FSKILL_TREE.md) > [SDK Setup](..\u002Fsentry-sdk-setup\u002FSKILL.md) > Android SDK\n\n# Sentry Android SDK\n\nOpinionated wizard that scans your Android project and guides you through complete Sentry setup — error monitoring, tracing, profiling, session replay, logging, and more.\n\n## Invoke This Skill When\n\n- User asks to \"add Sentry to Android\" or \"set up Sentry\" in an Android app\n- User wants error monitoring, crash reporting, ANR detection, tracing, profiling, session replay, or logging in Android\n- User mentions `sentry-android`, `io.sentry:sentry-android`, mobile crash tracking, or Sentry for Kotlin\u002FJava Android\n- User wants to monitor native (NDK) crashes, application not responding (ANR) events, or app startup performance\n\n> **Note:** SDK versions and APIs below reflect current Sentry docs at time of writing (`io.sentry:sentry-android:8.33.0`, Gradle plugin `6.1.0`).\n> Always verify against [docs.sentry.io\u002Fplatforms\u002Fandroid\u002F](https:\u002F\u002Fdocs.sentry.io\u002Fplatforms\u002Fandroid\u002F) before implementing.\n\n---\n\n## Phase 1: Detect\n\nRun these commands to understand the project before making any recommendations:\n\n```bash\n# Detect project structure and build system\nls build.gradle build.gradle.kts settings.gradle settings.gradle.kts 2>\u002Fdev\u002Fnull\n\n# Check AGP version and existing Sentry\ngrep -r '\"com.android.application\"' build.gradle* app\u002Fbuild.gradle* 2>\u002Fdev\u002Fnull | head -3\ngrep -ri sentry build.gradle* app\u002Fbuild.gradle* 2>\u002Fdev\u002Fnull | head -10\n\n# Check app-level build file (Groovy vs KTS)\nls app\u002Fbuild.gradle app\u002Fbuild.gradle.kts 2>\u002Fdev\u002Fnull\n\n# Detect Gradle version catalog (libs.versions.toml) — modern AGP projects\nls gradle\u002Flibs.versions.toml 2>\u002Fdev\u002Fnull\n\n# Check for existing Sentry entries in the version catalog\ngrep -iE 'sentry|io\\.sentry' gradle\u002Flibs.versions.toml 2>\u002Fdev\u002Fnull | head -10\n\n# Check if build files reference the catalog (alias\u002Flibs.* usage)\ngrep -E 'alias\\(libs\\.|libs\\.[a-zA-Z]' build.gradle build.gradle.kts app\u002Fbuild.gradle app\u002Fbuild.gradle.kts 2>\u002Fdev\u002Fnull | head -5\n\n# Detect Kotlin vs Java\nfind app\u002Fsrc\u002Fmain -name \"*.kt\" 2>\u002Fdev\u002Fnull | head -3\nfind app\u002Fsrc\u002Fmain -name \"*.java\" 2>\u002Fdev\u002Fnull | head -3\n\n# Check minSdk, targetSdk\ngrep -E 'minSdk|targetSdk|compileSdk|minSdkVersion|targetSdkVersion' app\u002Fbuild.gradle app\u002Fbuild.gradle.kts 2>\u002Fdev\u002Fnull | head -6\n\n# Detect Jetpack Compose\ngrep -E 'compose|androidx.compose' app\u002Fbuild.gradle app\u002Fbuild.gradle.kts 2>\u002Fdev\u002Fnull | head -5\n\n# Detect OkHttp (popular HTTP client — has dedicated integration)\ngrep -E 'okhttp|retrofit' app\u002Fbuild.gradle app\u002Fbuild.gradle.kts 2>\u002Fdev\u002Fnull | head -3\n\n# Detect Room or SQLite\ngrep -E 'androidx.room|androidx.sqlite' app\u002Fbuild.gradle app\u002Fbuild.gradle.kts 2>\u002Fdev\u002Fnull | head -3\n\n# Detect Timber (logging library)\ngrep -E 'timber' app\u002Fbuild.gradle app\u002Fbuild.gradle.kts 2>\u002Fdev\u002Fnull | head -3\n\n# Detect Jetpack Navigation\ngrep -E 'androidx.navigation' app\u002Fbuild.gradle app\u002Fbuild.gradle.kts 2>\u002Fdev\u002Fnull | head -3\n\n# Detect Apollo (GraphQL)\ngrep -E 'apollo' app\u002Fbuild.gradle app\u002Fbuild.gradle.kts 2>\u002Fdev\u002Fnull | head -3\n\n# Check existing Sentry initialization\ngrep -r \"SentryAndroid.init\\|io.sentry.Sentry\" app\u002Fsrc\u002F 2>\u002Fdev\u002Fnull | head -5\n\n# Check Application class\nfind app\u002Fsrc\u002Fmain -name \"*.kt\" -o -name \"*.java\" 2>\u002Fdev\u002Fnull | xargs grep -l \"Application()\" 2>\u002Fdev\u002Fnull | head -3\n\n# Adjacent backend (for cross-linking)\nls ..\u002Fbackend ..\u002Fserver ..\u002Fapi 2>\u002Fdev\u002Fnull\nfind .. -maxdepth 2 \\( -name \"go.mod\" -o -name \"requirements.txt\" -o -name \"Gemfile\" \\) 2>\u002Fdev\u002Fnull | grep -v node_modules | head -5\n```\n\n**What to determine:**\n\n| Question | Impact |\n|----------|--------|\n| `build.gradle.kts` present? | Use Kotlin DSL syntax in all examples |\n| `gradle\u002Flibs.versions.toml` present? | Add Sentry to the version catalog; reference via `libs.*` in build files |\n| Catalog already has `sentry` entries? | Reuse the existing version ref; don't duplicate or hardcode versions |\n| `minSdk \u003C 26`? | Note Session Replay requires API 26+ — silent no-op below that |\n| Compose detected? | Recommend `sentry-compose-android` and Compose-specific masking |\n| OkHttp present? | Recommend `sentry-okhttp` interceptor or Gradle plugin bytecode auto-instrumentation |\n| Room\u002FSQLite present? | Recommend `sentry-android-sqlite` or plugin bytecode instrumentation |\n| Timber present? | Recommend `sentry-android-timber` integration |\n| Jetpack Navigation? | Recommend `sentry-android-navigation` for screen tracking |\n| Already has `SentryAndroid.init()`? | Skip install, jump to feature config |\n| Application subclass exists? | That's where `SentryAndroid.init()` goes |\n\n---\n\n## Phase 2: Recommend\n\nPresent a concrete recommendation based on what you found. Don't ask open-ended questions — lead with a proposal:\n\n**Recommended (core coverage — always set up these):**\n- ✅ **Error Monitoring** — captures uncaught exceptions, ANRs, and native NDK crashes automatically\n- ✅ **Tracing** — auto-instruments Activity lifecycle, app start, HTTP requests, and database queries\n- ✅ **Session Replay** — records screen captures and user interactions for debugging (API 26+)\n\n**Optional (enhanced observability):**\n- ⚡ **Profiling** — continuous UI profiling (recommended) or transaction-based sampling\n- ⚡ **Logging** — structured logs via `Sentry.logger()`, with optional Timber bridge\n- ⚡ **User Feedback** — collect user-submitted bug reports from inside the app\n\n**Recommendation logic:**\n\n| Feature | Recommend when... |\n|---------|------------------|\n| Error Monitoring | **Always** — non-negotiable baseline for any Android app |\n| Tracing | **Always for Android** — app start time, Activity lifecycle, network latency matter |\n| Session Replay | User-facing production app on API 26+; visual debugging of user issues |\n| Profiling | Performance-sensitive apps, startup time investigations, production perf analysis |\n| Logging | App uses structured logging or you want log-to-trace correlation in Sentry |\n| User Feedback | Beta or customer-facing app where you want user-submitted bug reports |\n\nPropose: *\"For your [Kotlin \u002F Java] Android app (minSdk X), I recommend setting up Error Monitoring + Tracing + Session Replay. Want me to also add Profiling and Logging?\"*\n\n---\n\n## Phase 3: Guide\n\n### Determine Your Setup Path\n\n| Project type | Recommended setup | Complexity |\n|-------------|------------------|------------|\n| New project, no existing Sentry | Gradle plugin (recommended) | Low — plugin handles most config |\n| Existing project, no Sentry | Gradle plugin or manual init | Medium — add dependency + Application class |\n| Manual full control | `SentryAndroid.init()` in Application | Medium — explicit config, most flexible |\n\n### Option 1: Wizard (Recommended)\n\n> **You need to run this yourself** — the wizard opens a browser for login\n> and requires interactive input that the agent can't handle.\n> Copy-paste into your terminal:\n>\n> ```\n> npx @sentry\u002Fwizard@latest -i android\n> ```\n>\n> It handles login, org\u002Fproject selection, Gradle plugin setup, dependency\n> installation, DSN configuration, and ProGuard\u002FR8 mapping upload.\n>\n> **Once it finishes, come back and skip to [Verification](#verification).**\n\nIf the user skips the wizard, proceed with Option 2 (Manual Setup) below.\n\n---\n\n### Option 2: Manual Setup\n\n#### Using a Gradle Version Catalog (`gradle\u002Flibs.versions.toml`)\n\nIf Phase 1 detected `gradle\u002Flibs.versions.toml`, add Sentry to the catalog **first**, then reference it from your build files. This keeps versions centralized and matches modern AGP project conventions.\n\n**Step 1 — Add entries to `gradle\u002Flibs.versions.toml`**\n\n```toml\n[versions]\nsentry = \"8.33.0\"\nsentryGradlePlugin = \"6.1.0\"\n\n[libraries]\nsentry-android = { module = \"io.sentry:sentry-android\", version.ref = \"sentry\" }\nsentry-bom = { module = \"io.sentry:sentry-bom\", version.ref = \"sentry\" }\n# Optional integrations — add only the ones your project uses:\nsentry-android-timber = { module = \"io.sentry:sentry-android-timber\" }\nsentry-android-fragment = { module = \"io.sentry:sentry-android-fragment\" }\nsentry-compose-android = { module = \"io.sentry:sentry-compose-android\" }\nsentry-android-navigation = { module = \"io.sentry:sentry-android-navigation\" }\nsentry-okhttp = { module = \"io.sentry:sentry-okhttp\" }\nsentry-android-sqlite = { module = \"io.sentry:sentry-android-sqlite\" }\nsentry-kotlin-extensions = { module = \"io.sentry:sentry-kotlin-extensions\" }\n\n[plugins]\nsentry-android-gradle = { id = \"io.sentry.android.gradle\", version.ref = \"sentryGradlePlugin\" }\n```\n\n> **Note:** Optional integration entries omit `version.ref` — their versions come from the BOM at resolution time. Only `sentry-bom` needs the version ref.\n> If the catalog already defines a `sentry` version, reuse it instead of adding a duplicate entry.\n\n**Step 2 — Reference the catalog from `build.gradle[.kts]`**\n\nProject-level `build.gradle.kts`:\n```kotlin\nplugins {\n    alias(libs.plugins.sentry.android.gradle) apply false\n}\n```\n\nApp-level `app\u002Fbuild.gradle.kts`:\n```kotlin\nplugins {\n    id(\"com.android.application\")\n    alias(libs.plugins.sentry.android.gradle)\n}\n\ndependencies {\n    implementation(platform(libs.sentry.bom))\n    implementation(libs.sentry.android)\n    \u002F\u002F implementation(libs.sentry.okhttp)\n    \u002F\u002F implementation(libs.sentry.compose.android)\n}\n```\n\nGroovy DSL (`app\u002Fbuild.gradle`) equivalent:\n```groovy\nplugins {\n    id \"com.android.application\"\n    alias libs.plugins.sentry.android.gradle\n}\n\ndependencies {\n    implementation platform(libs.sentry.bom)\n    implementation libs.sentry.android\n}\n```\n\nThen continue with the `sentry {}` configuration block from Path A, Step 2 below. The rest of the setup (Application class init, manifest registration, verification) is identical.\n\n---\n\n#### Path A: Gradle Plugin (Recommended)\n\nThe Sentry Gradle plugin is the easiest setup path. It:\n- Uploads ProGuard\u002FR8 mapping files automatically on release builds\n- Injects source context into stack frames\n- Optionally instruments OkHttp, Room\u002FSQLite, File I\u002FO, Compose navigation, and `android.util.Log` via bytecode transforms (zero source changes)\n\n**Step 1 — Add the plugin to `build.gradle[.kts]` (project-level)**\n\nGroovy DSL (`build.gradle`):\n```groovy\nplugins {\n    id \"io.sentry.android.gradle\" version \"6.1.0\" apply false\n}\n```\n\nKotlin DSL (`build.gradle.kts`):\n```kotlin\nplugins {\n    id(\"io.sentry.android.gradle\") version \"6.1.0\" apply false\n}\n```\n\n**Step 2 — Apply plugin + add dependencies in `app\u002Fbuild.gradle[.kts]`**\n\nGroovy DSL:\n```groovy\nplugins {\n    id \"com.android.application\"\n    id \"io.sentry.android.gradle\"\n}\n\nandroid {\n    \u002F\u002F ...\n}\n\ndependencies {\n    \u002F\u002F Use BOM for consistent versions across sentry modules\n    implementation platform(\"io.sentry:sentry-bom:8.33.0\")\n    implementation \"io.sentry:sentry-android\"\n\n    \u002F\u002F Optional integrations (add what's relevant):\n    \u002F\u002F implementation \"io.sentry:sentry-android-timber\"     \u002F\u002F Timber bridge\n    \u002F\u002F implementation \"io.sentry:sentry-android-fragment\"   \u002F\u002F Fragment lifecycle tracing\n    \u002F\u002F implementation \"io.sentry:sentry-compose-android\"    \u002F\u002F Jetpack Compose support\n    \u002F\u002F implementation \"io.sentry:sentry-android-navigation\"  \u002F\u002F Jetpack Navigation\n    \u002F\u002F implementation \"io.sentry:sentry-okhttp\"             \u002F\u002F OkHttp interceptor\n    \u002F\u002F implementation \"io.sentry:sentry-android-sqlite\"     \u002F\u002F Room\u002FSQLite tracing\n    \u002F\u002F implementation \"io.sentry:sentry-kotlin-extensions\"  \u002F\u002F Coroutine context propagation\n}\n\nsentry {\n    org = \"YOUR_ORG_SLUG\"\n    projectName = \"YOUR_PROJECT_SLUG\"\n    authToken = System.getenv(\"SENTRY_AUTH_TOKEN\")\n\n    \u002F\u002F Enable auto-instrumentation via bytecode transforms (no source changes needed)\n    tracingInstrumentation {\n        enabled = true\n        features = [InstrumentationFeature.DATABASE, InstrumentationFeature.FILE_IO,\n                    InstrumentationFeature.OKHTTP, InstrumentationFeature.COMPOSE]\n    }\n\n    \u002F\u002F Upload ProGuard mapping and source context on release\n    autoUploadProguardMapping = true\n    includeSourceContext = true\n}\n```\n\nKotlin DSL (`app\u002Fbuild.gradle.kts`):\n```kotlin\nplugins {\n    id(\"com.android.application\")\n    id(\"io.sentry.android.gradle\")\n}\n\ndependencies {\n    implementation(platform(\"io.sentry:sentry-bom:8.33.0\"))\n    implementation(\"io.sentry:sentry-android\")\n\n    \u002F\u002F Optional integrations:\n    \u002F\u002F implementation(\"io.sentry:sentry-android-timber\")\n    \u002F\u002F implementation(\"io.sentry:sentry-android-fragment\")\n    \u002F\u002F implementation(\"io.sentry:sentry-compose-android\")\n    \u002F\u002F implementation(\"io.sentry:sentry-android-navigation\")\n    \u002F\u002F implementation(\"io.sentry:sentry-okhttp\")\n    \u002F\u002F implementation(\"io.sentry:sentry-android-sqlite\")\n    \u002F\u002F implementation(\"io.sentry:sentry-kotlin-extensions\")\n}\n\nsentry {\n    org = \"YOUR_ORG_SLUG\"\n    projectName = \"YOUR_PROJECT_SLUG\"\n    authToken = System.getenv(\"SENTRY_AUTH_TOKEN\")\n\n    tracingInstrumentation {\n        enabled = true\n        features = setOf(\n            InstrumentationFeature.DATABASE,\n            InstrumentationFeature.FILE_IO,\n            InstrumentationFeature.OKHTTP,\n            InstrumentationFeature.COMPOSE,\n        )\n    }\n\n    autoUploadProguardMapping = true\n    includeSourceContext = true\n}\n```\n\n**Step 3 — Initialize Sentry in your Application class**\n\nIf you don't have an Application subclass, create one:\n\n```kotlin\n\u002F\u002F MyApplication.kt\nimport android.app.Application\nimport io.sentry.SentryLevel\nimport io.sentry.android.core.SentryAndroid\nimport io.sentry.android.replay.SentryReplayOptions\n\nclass MyApplication : Application() {\n    override fun onCreate() {\n        super.onCreate()\n\n        SentryAndroid.init(this) { options ->\n            options.dsn = \"YOUR_SENTRY_DSN\"\n\n            \u002F\u002F Tracing — lower to 0.1–0.2 in high-traffic production\n            options.tracesSampleRate = 1.0\n\n            \u002F\u002F Profiling — use continuous UI profiling (recommended, SDK ≥ 8.7.0)\n            options.profileSessionSampleRate = 1.0\n\n            \u002F\u002F Session Replay (API 26+ only; silent no-op below API 26)\n            options.sessionReplay.sessionSampleRate = 0.1    \u002F\u002F 10% of all sessions\n            options.sessionReplay.onErrorSampleRate = 1.0    \u002F\u002F 100% on error\n\n            \u002F\u002F Structured logging\n            options.logs.isEnabled = true\n\n            \u002F\u002F Environment\n            options.environment = BuildConfig.BUILD_TYPE\n        }\n    }\n}\n```\n\nJava equivalent:\n```java\n\u002F\u002F MyApplication.java\nimport android.app.Application;\nimport io.sentry.android.core.SentryAndroid;\n\npublic class MyApplication extends Application {\n    @Override\n    public void onCreate() {\n        super.onCreate();\n\n        SentryAndroid.init(this, options -> {\n            options.setDsn(\"YOUR_SENTRY_DSN\");\n            options.setTracesSampleRate(1.0);\n            options.setProfileSessionSampleRate(1.0);\n            options.getSessionReplay().setSessionSampleRate(0.1);\n            options.getSessionReplay().setOnErrorSampleRate(1.0);\n            options.getLogs().setEnabled(true);\n            options.setEnvironment(BuildConfig.BUILD_TYPE);\n        });\n    }\n}\n```\n\n**Step 4 — Register Application in `AndroidManifest.xml`**\n\n```xml\n\u003Capplication\n    android:name=\".MyApplication\"\n    ... >\n```\n\n---\n\n#### Path B: Manual Setup (No Gradle Plugin)\n\nUse this if you can't use the Gradle plugin (e.g., non-standard build setups).\n\n**Step 1 — Add dependency in `app\u002Fbuild.gradle[.kts]`**\n\n```kotlin\ndependencies {\n    implementation(platform(\"io.sentry:sentry-bom:8.33.0\"))\n    implementation(\"io.sentry:sentry-android\")\n}\n```\n\n**Step 2 — Initialize in Application class** (same as Path A, Step 3)\n\n**Step 3 — Configure ProGuard\u002FR8 manually**\n\nThe Sentry SDK ships a ProGuard rules file automatically. For manual mapping upload, install `sentry-cli` and add to your CI:\n\n```bash\nsentry-cli releases files \"my-app@1.0.0+42\" upload-proguard \\\n  --org YOUR_ORG --project YOUR_PROJECT \\\n  app\u002Fbuild\u002Foutputs\u002Fmapping\u002Frelease\u002Fmapping.txt\n```\n\n---\n\n### Quick Reference: Full-Featured `SentryAndroid.init()`\n\n```kotlin\nSentryAndroid.init(this) { options ->\n    options.dsn = \"YOUR_SENTRY_DSN\"\n\n    \u002F\u002F Environment and release\n    options.environment = BuildConfig.BUILD_TYPE     \u002F\u002F \"debug\", \"release\", etc.\n    options.release = \"${BuildConfig.APPLICATION_ID}@${BuildConfig.VERSION_NAME}+${BuildConfig.VERSION_CODE}\"\n\n    \u002F\u002F Tracing — sample 100% in dev, lower to 10–20% in production\n    options.tracesSampleRate = 1.0\n\n    \u002F\u002F Continuous UI profiling (recommended over transaction-based)\n    options.profileSessionSampleRate = 1.0\n\n    \u002F\u002F Session Replay (API 26+; silent no-op on API 21–25)\n    options.sessionReplay.sessionSampleRate = 0.1\n    options.sessionReplay.onErrorSampleRate = 1.0\n    options.sessionReplay.maskAllText = true         \u002F\u002F mask text for privacy\n    options.sessionReplay.maskAllImages = true       \u002F\u002F mask images for privacy\n\n    \u002F\u002F Structured logging\n    options.logs.isEnabled = true\n\n    \u002F\u002F Error enrichment\n    options.isAttachScreenshot = true                \u002F\u002F capture screenshot on error\n    options.isAttachViewHierarchy = true             \u002F\u002F attach view hierarchy JSON\n\n    \u002F\u002F ANR detection (5s default; watchdog + ApplicationExitInfo API 30+)\n    options.isAnrEnabled = true\n\n    \u002F\u002F NDK native crash handling (enabled by default)\n    options.isEnableNdk = true\n\n    \u002F\u002F Send PII: IP address, user data\n    options.sendDefaultPii = true\n\n    \u002F\u002F Trace propagation (backend distributed tracing)\n    options.tracePropagationTargets = listOf(\"api.yourapp.com\", \".*\\\\.yourapp\\\\.com\")\n\n    \u002F\u002F Verbose logging — disable in production\n    options.isDebug = BuildConfig.DEBUG\n}\n```\n\n---\n\n### For Each Agreed Feature\n\nWalk through features one at a time. Load the reference file for each, follow its steps, then verify before moving on:\n\n| Feature | Reference | Load when... |\n|---------|-----------|-------------|\n| Error Monitoring | `${SKILL_ROOT}\u002Freferences\u002Ferror-monitoring.md` | Always (baseline) |\n| Tracing & Performance | `${SKILL_ROOT}\u002Freferences\u002Ftracing.md` | Always for Android (Activity lifecycle, network) |\n| Profiling | `${SKILL_ROOT}\u002Freferences\u002Fprofiling.md` | Performance-sensitive production apps |\n| Session Replay | `${SKILL_ROOT}\u002Freferences\u002Fsession-replay.md` | User-facing apps (API 26+) |\n| Logging | `${SKILL_ROOT}\u002Freferences\u002Flogging.md` | Structured logging \u002F log-to-trace correlation |\n| Metrics | `${SKILL_ROOT}\u002Freferences\u002Fmetrics.md` | Custom metric tracking (SDK ≥ 8.30.0) |\n| Crons | `${SKILL_ROOT}\u002Freferences\u002Fcrons.md` | Scheduled jobs, WorkManager check-ins |\n| Integration Reference | `${SKILL_ROOT}\u002Freferences\u002Fintegrations.md` | Built-in, optional, and Gradle bytecode integrations |\n\nFor each feature: `Read ${SKILL_ROOT}\u002Freferences\u002F\u003Cfeature>.md`, follow steps exactly, verify it works.\n\n---\n\n## Configuration Reference\n\n### Core `SentryOptions` (via `SentryAndroid.init`)\n\n| Option | Type | Default | Purpose |\n|--------|------|---------|---------|\n| `dsn` | `String` | — | **Required.** Project DSN; SDK silently disabled if empty |\n| `environment` | `String` | — | e.g., `\"production\"`, `\"staging\"`. Env: `SENTRY_ENVIRONMENT` |\n| `release` | `String` | — | App version, e.g., `\"my-app@1.0.0+42\"`. Env: `SENTRY_RELEASE` |\n| `dist` | `String` | — | Build variant \u002F distribution identifier |\n| `sendDefaultPii` | `Boolean` | `false` | Include PII: IP address, user data |\n| `sampleRate` | `Double` | `1.0` | Error event sampling (0.0–1.0) |\n| `maxBreadcrumbs` | `Int` | `100` | Max breadcrumbs per event |\n| `isAttachStacktrace` | `Boolean` | `true` | Auto-attach stack traces to message events |\n| `isAttachScreenshot` | `Boolean` | `false` | Capture screenshot on error |\n| `isAttachViewHierarchy` | `Boolean` | `false` | Attach JSON view hierarchy as attachment |\n| `isDebug` | `Boolean` | `false` | Verbose SDK output. **Never use in production** |\n| `isEnabled` | `Boolean` | `true` | Disable SDK entirely (e.g., for testing) |\n| `beforeSend` | `SentryOptions.BeforeSendCallback` | — | Modify or drop error events before sending |\n| `beforeBreadcrumb` | `SentryOptions.BeforeBreadcrumbCallback` | — | Filter breadcrumbs before storage |\n\n### Tracing Options\n\n| Option | Type | Default | Purpose |\n|--------|------|---------|---------|\n| `tracesSampleRate` | `Double` | `0.0` | Transaction sample rate (0–1). Use `1.0` in dev |\n| `tracesSampler` | `TracesSamplerCallback` | — | Per-transaction sampling; overrides `tracesSampleRate` |\n| `tracePropagationTargets` | `List\u003CString>` | `[\".*\"]` | Hosts\u002FURLs to receive `sentry-trace` and `baggage` headers |\n| `isEnableAutoActivityLifecycleTracing` | `Boolean` | `true` | Auto-instrument Activity lifecycle |\n| `isEnableTimeToFullDisplayTracing` | `Boolean` | `false` | TTFD spans (requires `Sentry.reportFullyDisplayed()`) |\n| `isEnableUserInteractionTracing` | `Boolean` | `false` | Auto-instrument user gestures as transactions |\n\n### Profiling Options\n\n| Option | Type | Default | Purpose |\n|--------|------|---------|---------|\n| `profileSessionSampleRate` | `Double` | `0.0` | Continuous profiling sample rate (SDK ≥ 8.7.0, API 22+) |\n| `profilesSampleRate` | `Double` | `0.0` | Legacy transaction profiling rate (mutually exclusive with continuous) |\n| `isProfilingStartOnAppStart` | `Boolean` | `false` | Auto-start profiling session on app launch |\n\n### ANR Options\n\n| Option | Type | Default | Purpose |\n|--------|------|---------|---------|\n| `isAnrEnabled` | `Boolean` | `true` | Enable ANR watchdog thread |\n| `anrTimeoutIntervalMillis` | `Long` | `5000` | Milliseconds before reporting ANR |\n| `isAnrReportInDebug` | `Boolean` | `false` | Report ANRs in debug builds (noisy in debugger) |\n\n### NDK Options\n\n| Option | Type | Default | Purpose |\n|--------|------|---------|---------|\n| `isEnableNdk` | `Boolean` | `true` | Enable native crash capture via sentry-native |\n| `isEnableScopeSync` | `Boolean` | `true` | Sync Java scope (user, tags) to NDK layer |\n| `isEnableTombstoneFetchJob` | `Boolean` | `true` | Fetch NDK tombstone files for enrichment |\n\n### Session Replay Options (`options.sessionReplay`)\n\n| Option | Type | Default | Purpose |\n|--------|------|---------|---------|\n| `sessionSampleRate` | `Double` | `0.0` | Fraction of all sessions to record |\n| `onErrorSampleRate` | `Double` | `0.0` | Fraction of error sessions to record |\n| `maskAllText` | `Boolean` | `true` | Mask all text in replays |\n| `maskAllImages` | `Boolean` | `true` | Mask all images in replays |\n| `quality` | `SentryReplayQuality` | `MEDIUM` | Video quality: `LOW`, `MEDIUM`, `HIGH` |\n\n### Logging Options (`options.logs`)\n\n| Option | Type | Default | Purpose |\n|--------|------|---------|---------|\n| `isEnabled` | `Boolean` | `false` | Enable `Sentry.logger()` API (SDK ≥ 8.12.0) |\n| `setBeforeSend` | `BeforeSendLogCallback` | — | Filter\u002Fmodify log entries before sending |\n\n### Environment Variables\n\n| Variable | Purpose | Notes |\n|----------|---------|-------|\n| `SENTRY_DSN` | Data Source Name | Set in CI; SDK reads from environment at init |\n| `SENTRY_AUTH_TOKEN` | Upload ProGuard mappings and source context | **Never commit — use CI\u002FCD secrets** |\n| `SENTRY_ORG` | Organization slug | Used by Gradle plugin `sentry.org` |\n| `SENTRY_PROJECT` | Project slug | Used by Gradle plugin `sentry.projectName` |\n| `SENTRY_RELEASE` | Release identifier | Falls back from `options.release` |\n| `SENTRY_ENVIRONMENT` | Environment name | Falls back from `options.environment` |\n\nYou can also configure DSN and many options via `AndroidManifest.xml` meta-data:\n\n```xml\n\u003Capplication>\n    \u003Cmeta-data android:name=\"io.sentry.dsn\" android:value=\"YOUR_DSN\" \u002F>\n    \u003Cmeta-data android:name=\"io.sentry.traces-sample-rate\" android:value=\"1.0\" \u002F>\n    \u003Cmeta-data android:name=\"io.sentry.environment\" android:value=\"production\" \u002F>\n    \u003Cmeta-data android:name=\"io.sentry.anr.enable\" android:value=\"true\" \u002F>\n    \u003Cmeta-data android:name=\"io.sentry.attach-screenshot\" android:value=\"true\" \u002F>\n    \u003Cmeta-data android:name=\"io.sentry.attach-view-hierarchy\" android:value=\"true\" \u002F>\n\u003C\u002Fapplication>\n```\n\n> ⚠️ Manifest meta-data is a convenient alternative but does **not** support the full option set. For complex configuration (session replay, profiling, hooks), use `SentryAndroid.init()`.\n\n---\n\n## Verification\n\nAfter setup, verify Sentry is receiving events:\n\n**Test error capture:**\n```kotlin\n\u002F\u002F In an Activity or Fragment\ntry {\n    throw RuntimeException(\"Sentry Android SDK test\")\n} catch (e: Exception) {\n    Sentry.captureException(e)\n}\n```\n\n**Test tracing:**\n```kotlin\nval transaction = Sentry.startTransaction(\"test-task\", \"task\")\nval span = transaction.startChild(\"test-span\", \"description\")\nspan.finish()\ntransaction.finish()\n```\n\n**Test structured logging (SDK ≥ 8.12.0):**\n```kotlin\nSentry.logger().info(\"Sentry logging test\")\nSentry.logger().error(\"Error log test\", Exception(\"test error\"))\n```\n\n**Check the Sentry dashboard:**\n- **Issues** → your test exception should appear within seconds\n- **Traces** → look for `test-task` transaction with child span\n- **Replays** → session recording visible after app interaction (requires API 26+)\n- **Logs** → structured log entries visible under Logs tab\n\nIf nothing appears:\n1. Set `options.isDebug = true` — SDK logs to Logcat\n2. Verify DSN is correct and matches your Sentry project\n3. Check that your `Application` class is registered in `AndroidManifest.xml` as `android:name`\n4. Confirm the device\u002Femulator has internet connectivity\n5. For NDK crashes, ensure `isEnableNdk = true` (default) and build with NDK support\n\n---\n\n## Phase 4: Cross-Link\n\nAfter completing Android setup, check for a backend or web frontend missing Sentry coverage:\n\n```bash\n# Adjacent backend directories\nls ..\u002Fbackend ..\u002Fserver ..\u002Fapi 2>\u002Fdev\u002Fnull\ncat ..\u002Fgo.mod 2>\u002Fdev\u002Fnull | head -3\ncat ..\u002Frequirements.txt ..\u002Fpyproject.toml 2>\u002Fdev\u002Fnull | head -5\ncat ..\u002FGemfile 2>\u002Fdev\u002Fnull | head -3\nls ..\u002Fbackend\u002Fpackage.json ..\u002Fserver\u002Fpackage.json 2>\u002Fdev\u002Fnull\n\n# iOS counterpart app\nls ..\u002Fios ..\u002FYourApp-iOS 2>\u002Fdev\u002Fnull\nfind .. -maxdepth 3 -name \"*.xcodeproj\" 2>\u002Fdev\u002Fnull | head -3\n```\n\nIf a backend or related platform exists without Sentry, suggest the matching skill:\n\n| Detected | Suggest skill |\n|----------|--------------|\n| Go backend (`go.mod`) | `sentry-go-sdk` |\n| Python backend (`requirements.txt`, `pyproject.toml`) | `sentry-python-sdk` |\n| Ruby backend (`Gemfile`) | `sentry-ruby-sdk` |\n| Node.js backend | `@sentry\u002Fnode` — see [docs.sentry.io\u002Fplatforms\u002Fjavascript\u002Fguides\u002Fexpress\u002F](https:\u002F\u002Fdocs.sentry.io\u002Fplatforms\u002Fjavascript\u002Fguides\u002Fexpress\u002F) |\n| iOS app (`.xcodeproj`) | `sentry-cocoa-sdk` |\n| React Native (`package.json` with `react-native`) | `sentry-react-native-sdk` |\n| React \u002F Next.js web | `sentry-react-sdk` or `sentry-nextjs-sdk` |\n\n**Distributed tracing setup** — if the backend skill is added, configure `tracePropagationTargets` in Android to propagate trace context to your API:\n\n```kotlin\noptions.tracePropagationTargets = listOf(\n    \"api.yourapp.com\",\n    \".*\\\\.yourapp\\\\.com\"\n)\n```\n\nThis links mobile transactions to backend traces in the Sentry waterfall view.\n\n---\n\n## Troubleshooting\n\n| Issue | Solution |\n|-------|----------|\n| Events not appearing in Sentry | Set `isDebug = true`, check Logcat for SDK errors; verify DSN is correct and matches your project |\n| `SentryAndroid.init()` not called | Confirm `android:name=\".MyApplication\"` is set in `AndroidManifest.xml`; Application class not abstract |\n| Gradle plugin not found | Add the plugin to project-level `build.gradle.kts` first, then `apply false`; verify version `6.1.0` |\n| ProGuard mapping not uploading | Set `SENTRY_AUTH_TOKEN` env var; ensure `autoUploadProguardMapping = true` in `sentry {}` block |\n| NDK crashes not captured | Verify `isEnableNdk = true` (default); ensure project has NDK configured in `android.ndkVersion` |\n| ANR reported in debugger | Set `isAnrReportInDebug = false` (default); ANR watchdog fires when debugger pauses threads |\n| Session replay not recording | Requires API 26+; verify `sessionSampleRate > 0` or `onErrorSampleRate > 0`; check Logcat for replay errors |\n| Session replay shows blank screen | PixelCopy (default) requires hardware acceleration; try `SentryReplayOptions.screenshotQuality = CANVAS` |\n| Replay masking misaligned | Views with `translationX\u002FY` or `clipToPadding=false` can offset masks; report to [github.com\u002Fgetsentry\u002Fsentry-java](https:\u002F\u002Fgithub.com\u002Fgetsentry\u002Fsentry-java) |\n| `beforeSend` not firing | `beforeSend` only intercepts managed (Java\u002FKotlin) events; NDK native crashes bypass it |\n| OkHttp spans not appearing | Add `SentryOkHttpInterceptor` to your `OkHttpClient`, or use Gradle plugin `OKHTTP` bytecode instrumentation |\n| Spans not attached to transaction | Ensure `TransactionOptions().setBindToScope(true)` when starting transaction; child spans look for scope root |\n| Tracing not recording | Verify `tracesSampleRate > 0`; Activity instrumentation requires `isEnableAutoActivityLifecycleTracing = true` (default) |\n| Continuous profiling not working | SDK ≥ 8.7.0 required; API 22+ required; set `profileSessionSampleRate > 0`; don't also set `profilesSampleRate` |\n| Both profiling modes set | `profilesSampleRate` and `profileSessionSampleRate` are mutually exclusive — use only one |\n| TTFD spans missing | Set `isEnableTimeToFullDisplayTracing = true` and call `Sentry.reportFullyDisplayed()` when screen is ready |\n| Kotlin coroutine scope lost | Add `sentry-kotlin-extensions` dependency; use `Sentry.cloneMainContext()` to propagate trace context |\n| Release build stack traces unreadable | ProGuard mapping not uploaded; confirm Gradle plugin `autoUploadProguardMapping = true` and auth token set |\n| Source context not showing in Sentry | Enable `includeSourceContext = true` in `sentry {}` block (Gradle plugin required) |\n| BOM version conflict | Use `implementation(platform(\"io.sentry:sentry-bom:8.33.0\"))` and omit versions from all other `io.sentry:*` entries |\n| Version catalog alias unresolved | After editing `gradle\u002Flibs.versions.toml`, sync Gradle; alias names use `-` in TOML and `.` in build files (e.g., `sentry-android` → `libs.sentry.android`) |\n| Duplicate Sentry version in catalog | Reuse the existing `[versions] sentry = \"...\"` entry; don't add a second key, and don't hardcode the version in `build.gradle` when the catalog is in use |\n| `SENTRY_AUTH_TOKEN` exposed | Auth token is build-time only — never pass it to `SentryAndroid.init()` or embed in the APK |\n",{"data":40,"body":44},{"name":4,"description":6,"license":30,"category":41,"parent":42,"disable-model-invocation":43},"sdk-setup","sentry-sdk-setup",true,{"type":45,"children":46},"root",[47,74,80,85,92,134,174,178,184,189,1610,1618,1871,1874,1880,1885,1893,1930,1938,1983,1991,2095,2113,2116,2122,2129,2215,2221,2265,2270,2273,2279,2293,2312,2325,2476,2511,2525,2537,2570,2582,2673,2686,2762,2775,2778,2784,2789,2815,2830,2842,2871,2882,2911,2925,2930,3279,3289,3572,3580,3585,3831,3836,4001,4015,4048,4051,4057,4062,4075,4110,4120,4128,4141,4223,4226,4237,4560,4563,4569,4574,4772,4785,4788,4794,4815,5340,5346,5607,5613,5740,5746,5875,5881,6008,6021,6235,6248,6345,6351,6532,6544,6615,6636,6639,6644,6649,6657,6711,6719,6758,6766,6789,6797,6848,6853,6919,6922,6928,6933,7199,7204,7409,7426,7465,7470,7473,7479,8140],{"type":48,"tag":49,"props":50,"children":51},"element","blockquote",{},[52],{"type":48,"tag":53,"props":54,"children":55},"p",{},[56,64,66,72],{"type":48,"tag":57,"props":58,"children":60},"a",{"href":59},"..\u002F..\u002FSKILL_TREE.md",[61],{"type":62,"value":63},"text","All Skills",{"type":62,"value":65}," > ",{"type":48,"tag":57,"props":67,"children":69},{"href":68},"..\u002Fsentry-sdk-setup\u002FSKILL.md",[70],{"type":62,"value":71},"SDK Setup",{"type":62,"value":73}," > Android SDK",{"type":48,"tag":75,"props":76,"children":77},"h1",{"id":4},[78],{"type":62,"value":79},"Sentry Android SDK",{"type":48,"tag":53,"props":81,"children":82},{},[83],{"type":62,"value":84},"Opinionated wizard that scans your Android project and guides you through complete Sentry setup — error monitoring, tracing, profiling, session replay, logging, and more.",{"type":48,"tag":86,"props":87,"children":89},"h2",{"id":88},"invoke-this-skill-when",[90],{"type":62,"value":91},"Invoke This Skill When",{"type":48,"tag":93,"props":94,"children":95},"ul",{},[96,102,107,129],{"type":48,"tag":97,"props":98,"children":99},"li",{},[100],{"type":62,"value":101},"User asks to \"add Sentry to Android\" or \"set up Sentry\" in an Android app",{"type":48,"tag":97,"props":103,"children":104},{},[105],{"type":62,"value":106},"User wants error monitoring, crash reporting, ANR detection, tracing, profiling, session replay, or logging in Android",{"type":48,"tag":97,"props":108,"children":109},{},[110,112,119,121,127],{"type":62,"value":111},"User mentions ",{"type":48,"tag":113,"props":114,"children":116},"code",{"className":115},[],[117],{"type":62,"value":118},"sentry-android",{"type":62,"value":120},", ",{"type":48,"tag":113,"props":122,"children":124},{"className":123},[],[125],{"type":62,"value":126},"io.sentry:sentry-android",{"type":62,"value":128},", mobile crash tracking, or Sentry for Kotlin\u002FJava Android",{"type":48,"tag":97,"props":130,"children":131},{},[132],{"type":62,"value":133},"User wants to monitor native (NDK) crashes, application not responding (ANR) events, or app startup performance",{"type":48,"tag":49,"props":135,"children":136},{},[137],{"type":48,"tag":53,"props":138,"children":139},{},[140,146,148,154,156,162,164,172],{"type":48,"tag":141,"props":142,"children":143},"strong",{},[144],{"type":62,"value":145},"Note:",{"type":62,"value":147}," SDK versions and APIs below reflect current Sentry docs at time of writing (",{"type":48,"tag":113,"props":149,"children":151},{"className":150},[],[152],{"type":62,"value":153},"io.sentry:sentry-android:8.33.0",{"type":62,"value":155},", Gradle plugin ",{"type":48,"tag":113,"props":157,"children":159},{"className":158},[],[160],{"type":62,"value":161},"6.1.0",{"type":62,"value":163},").\nAlways verify against ",{"type":48,"tag":57,"props":165,"children":169},{"href":166,"rel":167},"https:\u002F\u002Fdocs.sentry.io\u002Fplatforms\u002Fandroid\u002F",[168],"nofollow",[170],{"type":62,"value":171},"docs.sentry.io\u002Fplatforms\u002Fandroid\u002F",{"type":62,"value":173}," before implementing.",{"type":48,"tag":175,"props":176,"children":177},"hr",{},[],{"type":48,"tag":86,"props":179,"children":181},{"id":180},"phase-1-detect",[182],{"type":62,"value":183},"Phase 1: Detect",{"type":48,"tag":53,"props":185,"children":186},{},[187],{"type":62,"value":188},"Run these commands to understand the project before making any recommendations:",{"type":48,"tag":190,"props":191,"children":196},"pre",{"className":192,"code":193,"language":194,"meta":195,"style":195},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Detect project structure and build system\nls build.gradle build.gradle.kts settings.gradle settings.gradle.kts 2>\u002Fdev\u002Fnull\n\n# Check AGP version and existing Sentry\ngrep -r '\"com.android.application\"' build.gradle* app\u002Fbuild.gradle* 2>\u002Fdev\u002Fnull | head -3\ngrep -ri sentry build.gradle* app\u002Fbuild.gradle* 2>\u002Fdev\u002Fnull | head -10\n\n# Check app-level build file (Groovy vs KTS)\nls app\u002Fbuild.gradle app\u002Fbuild.gradle.kts 2>\u002Fdev\u002Fnull\n\n# Detect Gradle version catalog (libs.versions.toml) — modern AGP projects\nls gradle\u002Flibs.versions.toml 2>\u002Fdev\u002Fnull\n\n# Check for existing Sentry entries in the version catalog\ngrep -iE 'sentry|io\\.sentry' gradle\u002Flibs.versions.toml 2>\u002Fdev\u002Fnull | head -10\n\n# Check if build files reference the catalog (alias\u002Flibs.* usage)\ngrep -E 'alias\\(libs\\.|libs\\.[a-zA-Z]' build.gradle build.gradle.kts app\u002Fbuild.gradle app\u002Fbuild.gradle.kts 2>\u002Fdev\u002Fnull | head -5\n\n# Detect Kotlin vs Java\nfind app\u002Fsrc\u002Fmain -name \"*.kt\" 2>\u002Fdev\u002Fnull | head -3\nfind app\u002Fsrc\u002Fmain -name \"*.java\" 2>\u002Fdev\u002Fnull | head -3\n\n# Check minSdk, targetSdk\ngrep -E 'minSdk|targetSdk|compileSdk|minSdkVersion|targetSdkVersion' app\u002Fbuild.gradle app\u002Fbuild.gradle.kts 2>\u002Fdev\u002Fnull | head -6\n\n# Detect Jetpack Compose\ngrep -E 'compose|androidx.compose' app\u002Fbuild.gradle app\u002Fbuild.gradle.kts 2>\u002Fdev\u002Fnull | head -5\n\n# Detect OkHttp (popular HTTP client — has dedicated integration)\ngrep -E 'okhttp|retrofit' app\u002Fbuild.gradle app\u002Fbuild.gradle.kts 2>\u002Fdev\u002Fnull | head -3\n\n# Detect Room or SQLite\ngrep -E 'androidx.room|androidx.sqlite' app\u002Fbuild.gradle app\u002Fbuild.gradle.kts 2>\u002Fdev\u002Fnull | head -3\n\n# Detect Timber (logging library)\ngrep -E 'timber' app\u002Fbuild.gradle app\u002Fbuild.gradle.kts 2>\u002Fdev\u002Fnull | head -3\n\n# Detect Jetpack Navigation\ngrep -E 'androidx.navigation' app\u002Fbuild.gradle app\u002Fbuild.gradle.kts 2>\u002Fdev\u002Fnull | head -3\n\n# Detect Apollo (GraphQL)\ngrep -E 'apollo' app\u002Fbuild.gradle app\u002Fbuild.gradle.kts 2>\u002Fdev\u002Fnull | head -3\n\n# Check existing Sentry initialization\ngrep -r \"SentryAndroid.init\\|io.sentry.Sentry\" app\u002Fsrc\u002F 2>\u002Fdev\u002Fnull | head -5\n\n# Check Application class\nfind app\u002Fsrc\u002Fmain -name \"*.kt\" -o -name \"*.java\" 2>\u002Fdev\u002Fnull | xargs grep -l \"Application()\" 2>\u002Fdev\u002Fnull | head -3\n\n# Adjacent backend (for cross-linking)\nls ..\u002Fbackend ..\u002Fserver ..\u002Fapi 2>\u002Fdev\u002Fnull\nfind .. -maxdepth 2 \\( -name \"go.mod\" -o -name \"requirements.txt\" -o -name \"Gemfile\" \\) 2>\u002Fdev\u002Fnull | grep -v node_modules | head -5\n","bash","",[197],{"type":48,"tag":113,"props":198,"children":199},{"__ignoreMap":195},[200,212,254,263,272,344,399,407,416,441,449,458,479,487,496,546,554,563,626,634,643,697,746,754,763,817,825,834,887,895,903,956,964,973,1026,1034,1043,1096,1104,1113,1166,1174,1183,1236,1244,1253,1303,1311,1320,1429,1437,1446,1477],{"type":48,"tag":201,"props":202,"children":205},"span",{"class":203,"line":204},"line",1,[206],{"type":48,"tag":201,"props":207,"children":209},{"style":208},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[210],{"type":62,"value":211},"# Detect project structure and build system\n",{"type":48,"tag":201,"props":213,"children":215},{"class":203,"line":214},2,[216,222,228,233,238,243,249],{"type":48,"tag":201,"props":217,"children":219},{"style":218},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[220],{"type":62,"value":221},"ls",{"type":48,"tag":201,"props":223,"children":225},{"style":224},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[226],{"type":62,"value":227}," build.gradle",{"type":48,"tag":201,"props":229,"children":230},{"style":224},[231],{"type":62,"value":232}," build.gradle.kts",{"type":48,"tag":201,"props":234,"children":235},{"style":224},[236],{"type":62,"value":237}," settings.gradle",{"type":48,"tag":201,"props":239,"children":240},{"style":224},[241],{"type":62,"value":242}," settings.gradle.kts",{"type":48,"tag":201,"props":244,"children":246},{"style":245},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[247],{"type":62,"value":248}," 2>",{"type":48,"tag":201,"props":250,"children":251},{"style":224},[252],{"type":62,"value":253},"\u002Fdev\u002Fnull\n",{"type":48,"tag":201,"props":255,"children":257},{"class":203,"line":256},3,[258],{"type":48,"tag":201,"props":259,"children":260},{"emptyLinePlaceholder":43},[261],{"type":62,"value":262},"\n",{"type":48,"tag":201,"props":264,"children":266},{"class":203,"line":265},4,[267],{"type":48,"tag":201,"props":268,"children":269},{"style":208},[270],{"type":62,"value":271},"# Check AGP version and existing Sentry\n",{"type":48,"tag":201,"props":273,"children":275},{"class":203,"line":274},5,[276,281,286,291,296,301,305,311,316,320,324,329,334,339],{"type":48,"tag":201,"props":277,"children":278},{"style":218},[279],{"type":62,"value":280},"grep",{"type":48,"tag":201,"props":282,"children":283},{"style":224},[284],{"type":62,"value":285}," -r",{"type":48,"tag":201,"props":287,"children":288},{"style":245},[289],{"type":62,"value":290}," '",{"type":48,"tag":201,"props":292,"children":293},{"style":224},[294],{"type":62,"value":295},"\"com.android.application\"",{"type":48,"tag":201,"props":297,"children":298},{"style":245},[299],{"type":62,"value":300},"'",{"type":48,"tag":201,"props":302,"children":303},{"style":224},[304],{"type":62,"value":227},{"type":48,"tag":201,"props":306,"children":308},{"style":307},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[309],{"type":62,"value":310},"*",{"type":48,"tag":201,"props":312,"children":313},{"style":224},[314],{"type":62,"value":315}," app\u002Fbuild.gradle",{"type":48,"tag":201,"props":317,"children":318},{"style":307},[319],{"type":62,"value":310},{"type":48,"tag":201,"props":321,"children":322},{"style":245},[323],{"type":62,"value":248},{"type":48,"tag":201,"props":325,"children":326},{"style":224},[327],{"type":62,"value":328},"\u002Fdev\u002Fnull",{"type":48,"tag":201,"props":330,"children":331},{"style":245},[332],{"type":62,"value":333}," |",{"type":48,"tag":201,"props":335,"children":336},{"style":218},[337],{"type":62,"value":338}," head",{"type":48,"tag":201,"props":340,"children":341},{"style":224},[342],{"type":62,"value":343}," -3\n",{"type":48,"tag":201,"props":345,"children":347},{"class":203,"line":346},6,[348,352,357,362,366,370,374,378,382,386,390,394],{"type":48,"tag":201,"props":349,"children":350},{"style":218},[351],{"type":62,"value":280},{"type":48,"tag":201,"props":353,"children":354},{"style":224},[355],{"type":62,"value":356}," -ri",{"type":48,"tag":201,"props":358,"children":359},{"style":224},[360],{"type":62,"value":361}," sentry",{"type":48,"tag":201,"props":363,"children":364},{"style":224},[365],{"type":62,"value":227},{"type":48,"tag":201,"props":367,"children":368},{"style":307},[369],{"type":62,"value":310},{"type":48,"tag":201,"props":371,"children":372},{"style":224},[373],{"type":62,"value":315},{"type":48,"tag":201,"props":375,"children":376},{"style":307},[377],{"type":62,"value":310},{"type":48,"tag":201,"props":379,"children":380},{"style":245},[381],{"type":62,"value":248},{"type":48,"tag":201,"props":383,"children":384},{"style":224},[385],{"type":62,"value":328},{"type":48,"tag":201,"props":387,"children":388},{"style":245},[389],{"type":62,"value":333},{"type":48,"tag":201,"props":391,"children":392},{"style":218},[393],{"type":62,"value":338},{"type":48,"tag":201,"props":395,"children":396},{"style":224},[397],{"type":62,"value":398}," -10\n",{"type":48,"tag":201,"props":400,"children":402},{"class":203,"line":401},7,[403],{"type":48,"tag":201,"props":404,"children":405},{"emptyLinePlaceholder":43},[406],{"type":62,"value":262},{"type":48,"tag":201,"props":408,"children":410},{"class":203,"line":409},8,[411],{"type":48,"tag":201,"props":412,"children":413},{"style":208},[414],{"type":62,"value":415},"# Check app-level build file (Groovy vs KTS)\n",{"type":48,"tag":201,"props":417,"children":419},{"class":203,"line":418},9,[420,424,428,433,437],{"type":48,"tag":201,"props":421,"children":422},{"style":218},[423],{"type":62,"value":221},{"type":48,"tag":201,"props":425,"children":426},{"style":224},[427],{"type":62,"value":315},{"type":48,"tag":201,"props":429,"children":430},{"style":224},[431],{"type":62,"value":432}," app\u002Fbuild.gradle.kts",{"type":48,"tag":201,"props":434,"children":435},{"style":245},[436],{"type":62,"value":248},{"type":48,"tag":201,"props":438,"children":439},{"style":224},[440],{"type":62,"value":253},{"type":48,"tag":201,"props":442,"children":444},{"class":203,"line":443},10,[445],{"type":48,"tag":201,"props":446,"children":447},{"emptyLinePlaceholder":43},[448],{"type":62,"value":262},{"type":48,"tag":201,"props":450,"children":452},{"class":203,"line":451},11,[453],{"type":48,"tag":201,"props":454,"children":455},{"style":208},[456],{"type":62,"value":457},"# Detect Gradle version catalog (libs.versions.toml) — modern AGP projects\n",{"type":48,"tag":201,"props":459,"children":461},{"class":203,"line":460},12,[462,466,471,475],{"type":48,"tag":201,"props":463,"children":464},{"style":218},[465],{"type":62,"value":221},{"type":48,"tag":201,"props":467,"children":468},{"style":224},[469],{"type":62,"value":470}," gradle\u002Flibs.versions.toml",{"type":48,"tag":201,"props":472,"children":473},{"style":245},[474],{"type":62,"value":248},{"type":48,"tag":201,"props":476,"children":477},{"style":224},[478],{"type":62,"value":253},{"type":48,"tag":201,"props":480,"children":482},{"class":203,"line":481},13,[483],{"type":48,"tag":201,"props":484,"children":485},{"emptyLinePlaceholder":43},[486],{"type":62,"value":262},{"type":48,"tag":201,"props":488,"children":490},{"class":203,"line":489},14,[491],{"type":48,"tag":201,"props":492,"children":493},{"style":208},[494],{"type":62,"value":495},"# Check for existing Sentry entries in the version catalog\n",{"type":48,"tag":201,"props":497,"children":499},{"class":203,"line":498},15,[500,504,509,513,518,522,526,530,534,538,542],{"type":48,"tag":201,"props":501,"children":502},{"style":218},[503],{"type":62,"value":280},{"type":48,"tag":201,"props":505,"children":506},{"style":224},[507],{"type":62,"value":508}," -iE",{"type":48,"tag":201,"props":510,"children":511},{"style":245},[512],{"type":62,"value":290},{"type":48,"tag":201,"props":514,"children":515},{"style":224},[516],{"type":62,"value":517},"sentry|io\\.sentry",{"type":48,"tag":201,"props":519,"children":520},{"style":245},[521],{"type":62,"value":300},{"type":48,"tag":201,"props":523,"children":524},{"style":224},[525],{"type":62,"value":470},{"type":48,"tag":201,"props":527,"children":528},{"style":245},[529],{"type":62,"value":248},{"type":48,"tag":201,"props":531,"children":532},{"style":224},[533],{"type":62,"value":328},{"type":48,"tag":201,"props":535,"children":536},{"style":245},[537],{"type":62,"value":333},{"type":48,"tag":201,"props":539,"children":540},{"style":218},[541],{"type":62,"value":338},{"type":48,"tag":201,"props":543,"children":544},{"style":224},[545],{"type":62,"value":398},{"type":48,"tag":201,"props":547,"children":549},{"class":203,"line":548},16,[550],{"type":48,"tag":201,"props":551,"children":552},{"emptyLinePlaceholder":43},[553],{"type":62,"value":262},{"type":48,"tag":201,"props":555,"children":557},{"class":203,"line":556},17,[558],{"type":48,"tag":201,"props":559,"children":560},{"style":208},[561],{"type":62,"value":562},"# Check if build files reference the catalog (alias\u002Flibs.* usage)\n",{"type":48,"tag":201,"props":564,"children":566},{"class":203,"line":565},18,[567,571,576,580,585,589,593,597,601,605,609,613,617,621],{"type":48,"tag":201,"props":568,"children":569},{"style":218},[570],{"type":62,"value":280},{"type":48,"tag":201,"props":572,"children":573},{"style":224},[574],{"type":62,"value":575}," -E",{"type":48,"tag":201,"props":577,"children":578},{"style":245},[579],{"type":62,"value":290},{"type":48,"tag":201,"props":581,"children":582},{"style":224},[583],{"type":62,"value":584},"alias\\(libs\\.|libs\\.[a-zA-Z]",{"type":48,"tag":201,"props":586,"children":587},{"style":245},[588],{"type":62,"value":300},{"type":48,"tag":201,"props":590,"children":591},{"style":224},[592],{"type":62,"value":227},{"type":48,"tag":201,"props":594,"children":595},{"style":224},[596],{"type":62,"value":232},{"type":48,"tag":201,"props":598,"children":599},{"style":224},[600],{"type":62,"value":315},{"type":48,"tag":201,"props":602,"children":603},{"style":224},[604],{"type":62,"value":432},{"type":48,"tag":201,"props":606,"children":607},{"style":245},[608],{"type":62,"value":248},{"type":48,"tag":201,"props":610,"children":611},{"style":224},[612],{"type":62,"value":328},{"type":48,"tag":201,"props":614,"children":615},{"style":245},[616],{"type":62,"value":333},{"type":48,"tag":201,"props":618,"children":619},{"style":218},[620],{"type":62,"value":338},{"type":48,"tag":201,"props":622,"children":623},{"style":224},[624],{"type":62,"value":625}," -5\n",{"type":48,"tag":201,"props":627,"children":629},{"class":203,"line":628},19,[630],{"type":48,"tag":201,"props":631,"children":632},{"emptyLinePlaceholder":43},[633],{"type":62,"value":262},{"type":48,"tag":201,"props":635,"children":637},{"class":203,"line":636},20,[638],{"type":48,"tag":201,"props":639,"children":640},{"style":208},[641],{"type":62,"value":642},"# Detect Kotlin vs Java\n",{"type":48,"tag":201,"props":644,"children":646},{"class":203,"line":645},21,[647,652,657,662,667,672,677,681,685,689,693],{"type":48,"tag":201,"props":648,"children":649},{"style":218},[650],{"type":62,"value":651},"find",{"type":48,"tag":201,"props":653,"children":654},{"style":224},[655],{"type":62,"value":656}," app\u002Fsrc\u002Fmain",{"type":48,"tag":201,"props":658,"children":659},{"style":224},[660],{"type":62,"value":661}," -name",{"type":48,"tag":201,"props":663,"children":664},{"style":245},[665],{"type":62,"value":666}," \"",{"type":48,"tag":201,"props":668,"children":669},{"style":224},[670],{"type":62,"value":671},"*.kt",{"type":48,"tag":201,"props":673,"children":674},{"style":245},[675],{"type":62,"value":676},"\"",{"type":48,"tag":201,"props":678,"children":679},{"style":245},[680],{"type":62,"value":248},{"type":48,"tag":201,"props":682,"children":683},{"style":224},[684],{"type":62,"value":328},{"type":48,"tag":201,"props":686,"children":687},{"style":245},[688],{"type":62,"value":333},{"type":48,"tag":201,"props":690,"children":691},{"style":218},[692],{"type":62,"value":338},{"type":48,"tag":201,"props":694,"children":695},{"style":224},[696],{"type":62,"value":343},{"type":48,"tag":201,"props":698,"children":700},{"class":203,"line":699},22,[701,705,709,713,717,722,726,730,734,738,742],{"type":48,"tag":201,"props":702,"children":703},{"style":218},[704],{"type":62,"value":651},{"type":48,"tag":201,"props":706,"children":707},{"style":224},[708],{"type":62,"value":656},{"type":48,"tag":201,"props":710,"children":711},{"style":224},[712],{"type":62,"value":661},{"type":48,"tag":201,"props":714,"children":715},{"style":245},[716],{"type":62,"value":666},{"type":48,"tag":201,"props":718,"children":719},{"style":224},[720],{"type":62,"value":721},"*.java",{"type":48,"tag":201,"props":723,"children":724},{"style":245},[725],{"type":62,"value":676},{"type":48,"tag":201,"props":727,"children":728},{"style":245},[729],{"type":62,"value":248},{"type":48,"tag":201,"props":731,"children":732},{"style":224},[733],{"type":62,"value":328},{"type":48,"tag":201,"props":735,"children":736},{"style":245},[737],{"type":62,"value":333},{"type":48,"tag":201,"props":739,"children":740},{"style":218},[741],{"type":62,"value":338},{"type":48,"tag":201,"props":743,"children":744},{"style":224},[745],{"type":62,"value":343},{"type":48,"tag":201,"props":747,"children":749},{"class":203,"line":748},23,[750],{"type":48,"tag":201,"props":751,"children":752},{"emptyLinePlaceholder":43},[753],{"type":62,"value":262},{"type":48,"tag":201,"props":755,"children":757},{"class":203,"line":756},24,[758],{"type":48,"tag":201,"props":759,"children":760},{"style":208},[761],{"type":62,"value":762},"# Check minSdk, targetSdk\n",{"type":48,"tag":201,"props":764,"children":766},{"class":203,"line":765},25,[767,771,775,779,784,788,792,796,800,804,808,812],{"type":48,"tag":201,"props":768,"children":769},{"style":218},[770],{"type":62,"value":280},{"type":48,"tag":201,"props":772,"children":773},{"style":224},[774],{"type":62,"value":575},{"type":48,"tag":201,"props":776,"children":777},{"style":245},[778],{"type":62,"value":290},{"type":48,"tag":201,"props":780,"children":781},{"style":224},[782],{"type":62,"value":783},"minSdk|targetSdk|compileSdk|minSdkVersion|targetSdkVersion",{"type":48,"tag":201,"props":785,"children":786},{"style":245},[787],{"type":62,"value":300},{"type":48,"tag":201,"props":789,"children":790},{"style":224},[791],{"type":62,"value":315},{"type":48,"tag":201,"props":793,"children":794},{"style":224},[795],{"type":62,"value":432},{"type":48,"tag":201,"props":797,"children":798},{"style":245},[799],{"type":62,"value":248},{"type":48,"tag":201,"props":801,"children":802},{"style":224},[803],{"type":62,"value":328},{"type":48,"tag":201,"props":805,"children":806},{"style":245},[807],{"type":62,"value":333},{"type":48,"tag":201,"props":809,"children":810},{"style":218},[811],{"type":62,"value":338},{"type":48,"tag":201,"props":813,"children":814},{"style":224},[815],{"type":62,"value":816}," -6\n",{"type":48,"tag":201,"props":818,"children":820},{"class":203,"line":819},26,[821],{"type":48,"tag":201,"props":822,"children":823},{"emptyLinePlaceholder":43},[824],{"type":62,"value":262},{"type":48,"tag":201,"props":826,"children":828},{"class":203,"line":827},27,[829],{"type":48,"tag":201,"props":830,"children":831},{"style":208},[832],{"type":62,"value":833},"# Detect Jetpack Compose\n",{"type":48,"tag":201,"props":835,"children":837},{"class":203,"line":836},28,[838,842,846,850,855,859,863,867,871,875,879,883],{"type":48,"tag":201,"props":839,"children":840},{"style":218},[841],{"type":62,"value":280},{"type":48,"tag":201,"props":843,"children":844},{"style":224},[845],{"type":62,"value":575},{"type":48,"tag":201,"props":847,"children":848},{"style":245},[849],{"type":62,"value":290},{"type":48,"tag":201,"props":851,"children":852},{"style":224},[853],{"type":62,"value":854},"compose|androidx.compose",{"type":48,"tag":201,"props":856,"children":857},{"style":245},[858],{"type":62,"value":300},{"type":48,"tag":201,"props":860,"children":861},{"style":224},[862],{"type":62,"value":315},{"type":48,"tag":201,"props":864,"children":865},{"style":224},[866],{"type":62,"value":432},{"type":48,"tag":201,"props":868,"children":869},{"style":245},[870],{"type":62,"value":248},{"type":48,"tag":201,"props":872,"children":873},{"style":224},[874],{"type":62,"value":328},{"type":48,"tag":201,"props":876,"children":877},{"style":245},[878],{"type":62,"value":333},{"type":48,"tag":201,"props":880,"children":881},{"style":218},[882],{"type":62,"value":338},{"type":48,"tag":201,"props":884,"children":885},{"style":224},[886],{"type":62,"value":625},{"type":48,"tag":201,"props":888,"children":890},{"class":203,"line":889},29,[891],{"type":48,"tag":201,"props":892,"children":893},{"emptyLinePlaceholder":43},[894],{"type":62,"value":262},{"type":48,"tag":201,"props":896,"children":897},{"class":203,"line":31},[898],{"type":48,"tag":201,"props":899,"children":900},{"style":208},[901],{"type":62,"value":902},"# Detect OkHttp (popular HTTP client — has dedicated integration)\n",{"type":48,"tag":201,"props":904,"children":906},{"class":203,"line":905},31,[907,911,915,919,924,928,932,936,940,944,948,952],{"type":48,"tag":201,"props":908,"children":909},{"style":218},[910],{"type":62,"value":280},{"type":48,"tag":201,"props":912,"children":913},{"style":224},[914],{"type":62,"value":575},{"type":48,"tag":201,"props":916,"children":917},{"style":245},[918],{"type":62,"value":290},{"type":48,"tag":201,"props":920,"children":921},{"style":224},[922],{"type":62,"value":923},"okhttp|retrofit",{"type":48,"tag":201,"props":925,"children":926},{"style":245},[927],{"type":62,"value":300},{"type":48,"tag":201,"props":929,"children":930},{"style":224},[931],{"type":62,"value":315},{"type":48,"tag":201,"props":933,"children":934},{"style":224},[935],{"type":62,"value":432},{"type":48,"tag":201,"props":937,"children":938},{"style":245},[939],{"type":62,"value":248},{"type":48,"tag":201,"props":941,"children":942},{"style":224},[943],{"type":62,"value":328},{"type":48,"tag":201,"props":945,"children":946},{"style":245},[947],{"type":62,"value":333},{"type":48,"tag":201,"props":949,"children":950},{"style":218},[951],{"type":62,"value":338},{"type":48,"tag":201,"props":953,"children":954},{"style":224},[955],{"type":62,"value":343},{"type":48,"tag":201,"props":957,"children":959},{"class":203,"line":958},32,[960],{"type":48,"tag":201,"props":961,"children":962},{"emptyLinePlaceholder":43},[963],{"type":62,"value":262},{"type":48,"tag":201,"props":965,"children":967},{"class":203,"line":966},33,[968],{"type":48,"tag":201,"props":969,"children":970},{"style":208},[971],{"type":62,"value":972},"# Detect Room or SQLite\n",{"type":48,"tag":201,"props":974,"children":976},{"class":203,"line":975},34,[977,981,985,989,994,998,1002,1006,1010,1014,1018,1022],{"type":48,"tag":201,"props":978,"children":979},{"style":218},[980],{"type":62,"value":280},{"type":48,"tag":201,"props":982,"children":983},{"style":224},[984],{"type":62,"value":575},{"type":48,"tag":201,"props":986,"children":987},{"style":245},[988],{"type":62,"value":290},{"type":48,"tag":201,"props":990,"children":991},{"style":224},[992],{"type":62,"value":993},"androidx.room|androidx.sqlite",{"type":48,"tag":201,"props":995,"children":996},{"style":245},[997],{"type":62,"value":300},{"type":48,"tag":201,"props":999,"children":1000},{"style":224},[1001],{"type":62,"value":315},{"type":48,"tag":201,"props":1003,"children":1004},{"style":224},[1005],{"type":62,"value":432},{"type":48,"tag":201,"props":1007,"children":1008},{"style":245},[1009],{"type":62,"value":248},{"type":48,"tag":201,"props":1011,"children":1012},{"style":224},[1013],{"type":62,"value":328},{"type":48,"tag":201,"props":1015,"children":1016},{"style":245},[1017],{"type":62,"value":333},{"type":48,"tag":201,"props":1019,"children":1020},{"style":218},[1021],{"type":62,"value":338},{"type":48,"tag":201,"props":1023,"children":1024},{"style":224},[1025],{"type":62,"value":343},{"type":48,"tag":201,"props":1027,"children":1029},{"class":203,"line":1028},35,[1030],{"type":48,"tag":201,"props":1031,"children":1032},{"emptyLinePlaceholder":43},[1033],{"type":62,"value":262},{"type":48,"tag":201,"props":1035,"children":1037},{"class":203,"line":1036},36,[1038],{"type":48,"tag":201,"props":1039,"children":1040},{"style":208},[1041],{"type":62,"value":1042},"# Detect Timber (logging library)\n",{"type":48,"tag":201,"props":1044,"children":1046},{"class":203,"line":1045},37,[1047,1051,1055,1059,1064,1068,1072,1076,1080,1084,1088,1092],{"type":48,"tag":201,"props":1048,"children":1049},{"style":218},[1050],{"type":62,"value":280},{"type":48,"tag":201,"props":1052,"children":1053},{"style":224},[1054],{"type":62,"value":575},{"type":48,"tag":201,"props":1056,"children":1057},{"style":245},[1058],{"type":62,"value":290},{"type":48,"tag":201,"props":1060,"children":1061},{"style":224},[1062],{"type":62,"value":1063},"timber",{"type":48,"tag":201,"props":1065,"children":1066},{"style":245},[1067],{"type":62,"value":300},{"type":48,"tag":201,"props":1069,"children":1070},{"style":224},[1071],{"type":62,"value":315},{"type":48,"tag":201,"props":1073,"children":1074},{"style":224},[1075],{"type":62,"value":432},{"type":48,"tag":201,"props":1077,"children":1078},{"style":245},[1079],{"type":62,"value":248},{"type":48,"tag":201,"props":1081,"children":1082},{"style":224},[1083],{"type":62,"value":328},{"type":48,"tag":201,"props":1085,"children":1086},{"style":245},[1087],{"type":62,"value":333},{"type":48,"tag":201,"props":1089,"children":1090},{"style":218},[1091],{"type":62,"value":338},{"type":48,"tag":201,"props":1093,"children":1094},{"style":224},[1095],{"type":62,"value":343},{"type":48,"tag":201,"props":1097,"children":1099},{"class":203,"line":1098},38,[1100],{"type":48,"tag":201,"props":1101,"children":1102},{"emptyLinePlaceholder":43},[1103],{"type":62,"value":262},{"type":48,"tag":201,"props":1105,"children":1107},{"class":203,"line":1106},39,[1108],{"type":48,"tag":201,"props":1109,"children":1110},{"style":208},[1111],{"type":62,"value":1112},"# Detect Jetpack Navigation\n",{"type":48,"tag":201,"props":1114,"children":1116},{"class":203,"line":1115},40,[1117,1121,1125,1129,1134,1138,1142,1146,1150,1154,1158,1162],{"type":48,"tag":201,"props":1118,"children":1119},{"style":218},[1120],{"type":62,"value":280},{"type":48,"tag":201,"props":1122,"children":1123},{"style":224},[1124],{"type":62,"value":575},{"type":48,"tag":201,"props":1126,"children":1127},{"style":245},[1128],{"type":62,"value":290},{"type":48,"tag":201,"props":1130,"children":1131},{"style":224},[1132],{"type":62,"value":1133},"androidx.navigation",{"type":48,"tag":201,"props":1135,"children":1136},{"style":245},[1137],{"type":62,"value":300},{"type":48,"tag":201,"props":1139,"children":1140},{"style":224},[1141],{"type":62,"value":315},{"type":48,"tag":201,"props":1143,"children":1144},{"style":224},[1145],{"type":62,"value":432},{"type":48,"tag":201,"props":1147,"children":1148},{"style":245},[1149],{"type":62,"value":248},{"type":48,"tag":201,"props":1151,"children":1152},{"style":224},[1153],{"type":62,"value":328},{"type":48,"tag":201,"props":1155,"children":1156},{"style":245},[1157],{"type":62,"value":333},{"type":48,"tag":201,"props":1159,"children":1160},{"style":218},[1161],{"type":62,"value":338},{"type":48,"tag":201,"props":1163,"children":1164},{"style":224},[1165],{"type":62,"value":343},{"type":48,"tag":201,"props":1167,"children":1169},{"class":203,"line":1168},41,[1170],{"type":48,"tag":201,"props":1171,"children":1172},{"emptyLinePlaceholder":43},[1173],{"type":62,"value":262},{"type":48,"tag":201,"props":1175,"children":1177},{"class":203,"line":1176},42,[1178],{"type":48,"tag":201,"props":1179,"children":1180},{"style":208},[1181],{"type":62,"value":1182},"# Detect Apollo (GraphQL)\n",{"type":48,"tag":201,"props":1184,"children":1186},{"class":203,"line":1185},43,[1187,1191,1195,1199,1204,1208,1212,1216,1220,1224,1228,1232],{"type":48,"tag":201,"props":1188,"children":1189},{"style":218},[1190],{"type":62,"value":280},{"type":48,"tag":201,"props":1192,"children":1193},{"style":224},[1194],{"type":62,"value":575},{"type":48,"tag":201,"props":1196,"children":1197},{"style":245},[1198],{"type":62,"value":290},{"type":48,"tag":201,"props":1200,"children":1201},{"style":224},[1202],{"type":62,"value":1203},"apollo",{"type":48,"tag":201,"props":1205,"children":1206},{"style":245},[1207],{"type":62,"value":300},{"type":48,"tag":201,"props":1209,"children":1210},{"style":224},[1211],{"type":62,"value":315},{"type":48,"tag":201,"props":1213,"children":1214},{"style":224},[1215],{"type":62,"value":432},{"type":48,"tag":201,"props":1217,"children":1218},{"style":245},[1219],{"type":62,"value":248},{"type":48,"tag":201,"props":1221,"children":1222},{"style":224},[1223],{"type":62,"value":328},{"type":48,"tag":201,"props":1225,"children":1226},{"style":245},[1227],{"type":62,"value":333},{"type":48,"tag":201,"props":1229,"children":1230},{"style":218},[1231],{"type":62,"value":338},{"type":48,"tag":201,"props":1233,"children":1234},{"style":224},[1235],{"type":62,"value":343},{"type":48,"tag":201,"props":1237,"children":1239},{"class":203,"line":1238},44,[1240],{"type":48,"tag":201,"props":1241,"children":1242},{"emptyLinePlaceholder":43},[1243],{"type":62,"value":262},{"type":48,"tag":201,"props":1245,"children":1247},{"class":203,"line":1246},45,[1248],{"type":48,"tag":201,"props":1249,"children":1250},{"style":208},[1251],{"type":62,"value":1252},"# Check existing Sentry initialization\n",{"type":48,"tag":201,"props":1254,"children":1256},{"class":203,"line":1255},46,[1257,1261,1265,1269,1274,1278,1283,1287,1291,1295,1299],{"type":48,"tag":201,"props":1258,"children":1259},{"style":218},[1260],{"type":62,"value":280},{"type":48,"tag":201,"props":1262,"children":1263},{"style":224},[1264],{"type":62,"value":285},{"type":48,"tag":201,"props":1266,"children":1267},{"style":245},[1268],{"type":62,"value":666},{"type":48,"tag":201,"props":1270,"children":1271},{"style":224},[1272],{"type":62,"value":1273},"SentryAndroid.init\\|io.sentry.Sentry",{"type":48,"tag":201,"props":1275,"children":1276},{"style":245},[1277],{"type":62,"value":676},{"type":48,"tag":201,"props":1279,"children":1280},{"style":224},[1281],{"type":62,"value":1282}," app\u002Fsrc\u002F",{"type":48,"tag":201,"props":1284,"children":1285},{"style":245},[1286],{"type":62,"value":248},{"type":48,"tag":201,"props":1288,"children":1289},{"style":224},[1290],{"type":62,"value":328},{"type":48,"tag":201,"props":1292,"children":1293},{"style":245},[1294],{"type":62,"value":333},{"type":48,"tag":201,"props":1296,"children":1297},{"style":218},[1298],{"type":62,"value":338},{"type":48,"tag":201,"props":1300,"children":1301},{"style":224},[1302],{"type":62,"value":625},{"type":48,"tag":201,"props":1304,"children":1306},{"class":203,"line":1305},47,[1307],{"type":48,"tag":201,"props":1308,"children":1309},{"emptyLinePlaceholder":43},[1310],{"type":62,"value":262},{"type":48,"tag":201,"props":1312,"children":1314},{"class":203,"line":1313},48,[1315],{"type":48,"tag":201,"props":1316,"children":1317},{"style":208},[1318],{"type":62,"value":1319},"# Check Application class\n",{"type":48,"tag":201,"props":1321,"children":1323},{"class":203,"line":1322},49,[1324,1328,1332,1336,1340,1344,1348,1353,1357,1361,1365,1369,1373,1377,1381,1386,1391,1396,1400,1405,1409,1413,1417,1421,1425],{"type":48,"tag":201,"props":1325,"children":1326},{"style":218},[1327],{"type":62,"value":651},{"type":48,"tag":201,"props":1329,"children":1330},{"style":224},[1331],{"type":62,"value":656},{"type":48,"tag":201,"props":1333,"children":1334},{"style":224},[1335],{"type":62,"value":661},{"type":48,"tag":201,"props":1337,"children":1338},{"style":245},[1339],{"type":62,"value":666},{"type":48,"tag":201,"props":1341,"children":1342},{"style":224},[1343],{"type":62,"value":671},{"type":48,"tag":201,"props":1345,"children":1346},{"style":245},[1347],{"type":62,"value":676},{"type":48,"tag":201,"props":1349,"children":1350},{"style":224},[1351],{"type":62,"value":1352}," -o",{"type":48,"tag":201,"props":1354,"children":1355},{"style":224},[1356],{"type":62,"value":661},{"type":48,"tag":201,"props":1358,"children":1359},{"style":245},[1360],{"type":62,"value":666},{"type":48,"tag":201,"props":1362,"children":1363},{"style":224},[1364],{"type":62,"value":721},{"type":48,"tag":201,"props":1366,"children":1367},{"style":245},[1368],{"type":62,"value":676},{"type":48,"tag":201,"props":1370,"children":1371},{"style":245},[1372],{"type":62,"value":248},{"type":48,"tag":201,"props":1374,"children":1375},{"style":224},[1376],{"type":62,"value":328},{"type":48,"tag":201,"props":1378,"children":1379},{"style":245},[1380],{"type":62,"value":333},{"type":48,"tag":201,"props":1382,"children":1383},{"style":218},[1384],{"type":62,"value":1385}," xargs",{"type":48,"tag":201,"props":1387,"children":1388},{"style":224},[1389],{"type":62,"value":1390}," grep",{"type":48,"tag":201,"props":1392,"children":1393},{"style":224},[1394],{"type":62,"value":1395}," -l",{"type":48,"tag":201,"props":1397,"children":1398},{"style":245},[1399],{"type":62,"value":666},{"type":48,"tag":201,"props":1401,"children":1402},{"style":224},[1403],{"type":62,"value":1404},"Application()",{"type":48,"tag":201,"props":1406,"children":1407},{"style":245},[1408],{"type":62,"value":676},{"type":48,"tag":201,"props":1410,"children":1411},{"style":245},[1412],{"type":62,"value":248},{"type":48,"tag":201,"props":1414,"children":1415},{"style":224},[1416],{"type":62,"value":328},{"type":48,"tag":201,"props":1418,"children":1419},{"style":245},[1420],{"type":62,"value":333},{"type":48,"tag":201,"props":1422,"children":1423},{"style":218},[1424],{"type":62,"value":338},{"type":48,"tag":201,"props":1426,"children":1427},{"style":224},[1428],{"type":62,"value":343},{"type":48,"tag":201,"props":1430,"children":1432},{"class":203,"line":1431},50,[1433],{"type":48,"tag":201,"props":1434,"children":1435},{"emptyLinePlaceholder":43},[1436],{"type":62,"value":262},{"type":48,"tag":201,"props":1438,"children":1440},{"class":203,"line":1439},51,[1441],{"type":48,"tag":201,"props":1442,"children":1443},{"style":208},[1444],{"type":62,"value":1445},"# Adjacent backend (for cross-linking)\n",{"type":48,"tag":201,"props":1447,"children":1449},{"class":203,"line":1448},52,[1450,1454,1459,1464,1469,1473],{"type":48,"tag":201,"props":1451,"children":1452},{"style":218},[1453],{"type":62,"value":221},{"type":48,"tag":201,"props":1455,"children":1456},{"style":224},[1457],{"type":62,"value":1458}," ..\u002Fbackend",{"type":48,"tag":201,"props":1460,"children":1461},{"style":224},[1462],{"type":62,"value":1463}," ..\u002Fserver",{"type":48,"tag":201,"props":1465,"children":1466},{"style":224},[1467],{"type":62,"value":1468}," ..\u002Fapi",{"type":48,"tag":201,"props":1470,"children":1471},{"style":245},[1472],{"type":62,"value":248},{"type":48,"tag":201,"props":1474,"children":1475},{"style":224},[1476],{"type":62,"value":253},{"type":48,"tag":201,"props":1478,"children":1480},{"class":203,"line":1479},53,[1481,1485,1490,1495,1501,1506,1511,1515,1520,1524,1528,1532,1536,1541,1545,1549,1553,1557,1562,1566,1571,1576,1580,1584,1588,1593,1598,1602,1606],{"type":48,"tag":201,"props":1482,"children":1483},{"style":218},[1484],{"type":62,"value":651},{"type":48,"tag":201,"props":1486,"children":1487},{"style":224},[1488],{"type":62,"value":1489}," ..",{"type":48,"tag":201,"props":1491,"children":1492},{"style":224},[1493],{"type":62,"value":1494}," -maxdepth",{"type":48,"tag":201,"props":1496,"children":1498},{"style":1497},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1499],{"type":62,"value":1500}," 2",{"type":48,"tag":201,"props":1502,"children":1503},{"style":307},[1504],{"type":62,"value":1505}," \\( ",{"type":48,"tag":201,"props":1507,"children":1508},{"style":224},[1509],{"type":62,"value":1510},"-name",{"type":48,"tag":201,"props":1512,"children":1513},{"style":245},[1514],{"type":62,"value":666},{"type":48,"tag":201,"props":1516,"children":1517},{"style":224},[1518],{"type":62,"value":1519},"go.mod",{"type":48,"tag":201,"props":1521,"children":1522},{"style":245},[1523],{"type":62,"value":676},{"type":48,"tag":201,"props":1525,"children":1526},{"style":224},[1527],{"type":62,"value":1352},{"type":48,"tag":201,"props":1529,"children":1530},{"style":224},[1531],{"type":62,"value":661},{"type":48,"tag":201,"props":1533,"children":1534},{"style":245},[1535],{"type":62,"value":666},{"type":48,"tag":201,"props":1537,"children":1538},{"style":224},[1539],{"type":62,"value":1540},"requirements.txt",{"type":48,"tag":201,"props":1542,"children":1543},{"style":245},[1544],{"type":62,"value":676},{"type":48,"tag":201,"props":1546,"children":1547},{"style":224},[1548],{"type":62,"value":1352},{"type":48,"tag":201,"props":1550,"children":1551},{"style":224},[1552],{"type":62,"value":661},{"type":48,"tag":201,"props":1554,"children":1555},{"style":245},[1556],{"type":62,"value":666},{"type":48,"tag":201,"props":1558,"children":1559},{"style":224},[1560],{"type":62,"value":1561},"Gemfile",{"type":48,"tag":201,"props":1563,"children":1564},{"style":245},[1565],{"type":62,"value":676},{"type":48,"tag":201,"props":1567,"children":1568},{"style":307},[1569],{"type":62,"value":1570}," \\) ",{"type":48,"tag":201,"props":1572,"children":1573},{"style":245},[1574],{"type":62,"value":1575},"2>",{"type":48,"tag":201,"props":1577,"children":1578},{"style":224},[1579],{"type":62,"value":328},{"type":48,"tag":201,"props":1581,"children":1582},{"style":245},[1583],{"type":62,"value":333},{"type":48,"tag":201,"props":1585,"children":1586},{"style":218},[1587],{"type":62,"value":1390},{"type":48,"tag":201,"props":1589,"children":1590},{"style":224},[1591],{"type":62,"value":1592}," -v",{"type":48,"tag":201,"props":1594,"children":1595},{"style":224},[1596],{"type":62,"value":1597}," node_modules",{"type":48,"tag":201,"props":1599,"children":1600},{"style":245},[1601],{"type":62,"value":333},{"type":48,"tag":201,"props":1603,"children":1604},{"style":218},[1605],{"type":62,"value":338},{"type":48,"tag":201,"props":1607,"children":1608},{"style":224},[1609],{"type":62,"value":625},{"type":48,"tag":53,"props":1611,"children":1612},{},[1613],{"type":48,"tag":141,"props":1614,"children":1615},{},[1616],{"type":62,"value":1617},"What to determine:",{"type":48,"tag":1619,"props":1620,"children":1621},"table",{},[1622,1641],{"type":48,"tag":1623,"props":1624,"children":1625},"thead",{},[1626],{"type":48,"tag":1627,"props":1628,"children":1629},"tr",{},[1630,1636],{"type":48,"tag":1631,"props":1632,"children":1633},"th",{},[1634],{"type":62,"value":1635},"Question",{"type":48,"tag":1631,"props":1637,"children":1638},{},[1639],{"type":62,"value":1640},"Impact",{"type":48,"tag":1642,"props":1643,"children":1644},"tbody",{},[1645,1665,1691,1711,1730,1751,1771,1791,1811,1831,1851],{"type":48,"tag":1627,"props":1646,"children":1647},{},[1648,1660],{"type":48,"tag":1649,"props":1650,"children":1651},"td",{},[1652,1658],{"type":48,"tag":113,"props":1653,"children":1655},{"className":1654},[],[1656],{"type":62,"value":1657},"build.gradle.kts",{"type":62,"value":1659}," present?",{"type":48,"tag":1649,"props":1661,"children":1662},{},[1663],{"type":62,"value":1664},"Use Kotlin DSL syntax in all examples",{"type":48,"tag":1627,"props":1666,"children":1667},{},[1668,1678],{"type":48,"tag":1649,"props":1669,"children":1670},{},[1671,1677],{"type":48,"tag":113,"props":1672,"children":1674},{"className":1673},[],[1675],{"type":62,"value":1676},"gradle\u002Flibs.versions.toml",{"type":62,"value":1659},{"type":48,"tag":1649,"props":1679,"children":1680},{},[1681,1683,1689],{"type":62,"value":1682},"Add Sentry to the version catalog; reference via ",{"type":48,"tag":113,"props":1684,"children":1686},{"className":1685},[],[1687],{"type":62,"value":1688},"libs.*",{"type":62,"value":1690}," in build files",{"type":48,"tag":1627,"props":1692,"children":1693},{},[1694,1706],{"type":48,"tag":1649,"props":1695,"children":1696},{},[1697,1699,1704],{"type":62,"value":1698},"Catalog already has ",{"type":48,"tag":113,"props":1700,"children":1702},{"className":1701},[],[1703],{"type":62,"value":8},{"type":62,"value":1705}," entries?",{"type":48,"tag":1649,"props":1707,"children":1708},{},[1709],{"type":62,"value":1710},"Reuse the existing version ref; don't duplicate or hardcode versions",{"type":48,"tag":1627,"props":1712,"children":1713},{},[1714,1725],{"type":48,"tag":1649,"props":1715,"children":1716},{},[1717,1723],{"type":48,"tag":113,"props":1718,"children":1720},{"className":1719},[],[1721],{"type":62,"value":1722},"minSdk \u003C 26",{"type":62,"value":1724},"?",{"type":48,"tag":1649,"props":1726,"children":1727},{},[1728],{"type":62,"value":1729},"Note Session Replay requires API 26+ — silent no-op below that",{"type":48,"tag":1627,"props":1731,"children":1732},{},[1733,1738],{"type":48,"tag":1649,"props":1734,"children":1735},{},[1736],{"type":62,"value":1737},"Compose detected?",{"type":48,"tag":1649,"props":1739,"children":1740},{},[1741,1743,1749],{"type":62,"value":1742},"Recommend ",{"type":48,"tag":113,"props":1744,"children":1746},{"className":1745},[],[1747],{"type":62,"value":1748},"sentry-compose-android",{"type":62,"value":1750}," and Compose-specific masking",{"type":48,"tag":1627,"props":1752,"children":1753},{},[1754,1759],{"type":48,"tag":1649,"props":1755,"children":1756},{},[1757],{"type":62,"value":1758},"OkHttp present?",{"type":48,"tag":1649,"props":1760,"children":1761},{},[1762,1763,1769],{"type":62,"value":1742},{"type":48,"tag":113,"props":1764,"children":1766},{"className":1765},[],[1767],{"type":62,"value":1768},"sentry-okhttp",{"type":62,"value":1770}," interceptor or Gradle plugin bytecode auto-instrumentation",{"type":48,"tag":1627,"props":1772,"children":1773},{},[1774,1779],{"type":48,"tag":1649,"props":1775,"children":1776},{},[1777],{"type":62,"value":1778},"Room\u002FSQLite present?",{"type":48,"tag":1649,"props":1780,"children":1781},{},[1782,1783,1789],{"type":62,"value":1742},{"type":48,"tag":113,"props":1784,"children":1786},{"className":1785},[],[1787],{"type":62,"value":1788},"sentry-android-sqlite",{"type":62,"value":1790}," or plugin bytecode instrumentation",{"type":48,"tag":1627,"props":1792,"children":1793},{},[1794,1799],{"type":48,"tag":1649,"props":1795,"children":1796},{},[1797],{"type":62,"value":1798},"Timber present?",{"type":48,"tag":1649,"props":1800,"children":1801},{},[1802,1803,1809],{"type":62,"value":1742},{"type":48,"tag":113,"props":1804,"children":1806},{"className":1805},[],[1807],{"type":62,"value":1808},"sentry-android-timber",{"type":62,"value":1810}," integration",{"type":48,"tag":1627,"props":1812,"children":1813},{},[1814,1819],{"type":48,"tag":1649,"props":1815,"children":1816},{},[1817],{"type":62,"value":1818},"Jetpack Navigation?",{"type":48,"tag":1649,"props":1820,"children":1821},{},[1822,1823,1829],{"type":62,"value":1742},{"type":48,"tag":113,"props":1824,"children":1826},{"className":1825},[],[1827],{"type":62,"value":1828},"sentry-android-navigation",{"type":62,"value":1830}," for screen tracking",{"type":48,"tag":1627,"props":1832,"children":1833},{},[1834,1846],{"type":48,"tag":1649,"props":1835,"children":1836},{},[1837,1839,1845],{"type":62,"value":1838},"Already has ",{"type":48,"tag":113,"props":1840,"children":1842},{"className":1841},[],[1843],{"type":62,"value":1844},"SentryAndroid.init()",{"type":62,"value":1724},{"type":48,"tag":1649,"props":1847,"children":1848},{},[1849],{"type":62,"value":1850},"Skip install, jump to feature config",{"type":48,"tag":1627,"props":1852,"children":1853},{},[1854,1859],{"type":48,"tag":1649,"props":1855,"children":1856},{},[1857],{"type":62,"value":1858},"Application subclass exists?",{"type":48,"tag":1649,"props":1860,"children":1861},{},[1862,1864,1869],{"type":62,"value":1863},"That's where ",{"type":48,"tag":113,"props":1865,"children":1867},{"className":1866},[],[1868],{"type":62,"value":1844},{"type":62,"value":1870}," goes",{"type":48,"tag":175,"props":1872,"children":1873},{},[],{"type":48,"tag":86,"props":1875,"children":1877},{"id":1876},"phase-2-recommend",[1878],{"type":62,"value":1879},"Phase 2: Recommend",{"type":48,"tag":53,"props":1881,"children":1882},{},[1883],{"type":62,"value":1884},"Present a concrete recommendation based on what you found. Don't ask open-ended questions — lead with a proposal:",{"type":48,"tag":53,"props":1886,"children":1887},{},[1888],{"type":48,"tag":141,"props":1889,"children":1890},{},[1891],{"type":62,"value":1892},"Recommended (core coverage — always set up these):",{"type":48,"tag":93,"props":1894,"children":1895},{},[1896,1908,1919],{"type":48,"tag":97,"props":1897,"children":1898},{},[1899,1901,1906],{"type":62,"value":1900},"✅ ",{"type":48,"tag":141,"props":1902,"children":1903},{},[1904],{"type":62,"value":1905},"Error Monitoring",{"type":62,"value":1907}," — captures uncaught exceptions, ANRs, and native NDK crashes automatically",{"type":48,"tag":97,"props":1909,"children":1910},{},[1911,1912,1917],{"type":62,"value":1900},{"type":48,"tag":141,"props":1913,"children":1914},{},[1915],{"type":62,"value":1916},"Tracing",{"type":62,"value":1918}," — auto-instruments Activity lifecycle, app start, HTTP requests, and database queries",{"type":48,"tag":97,"props":1920,"children":1921},{},[1922,1923,1928],{"type":62,"value":1900},{"type":48,"tag":141,"props":1924,"children":1925},{},[1926],{"type":62,"value":1927},"Session Replay",{"type":62,"value":1929}," — records screen captures and user interactions for debugging (API 26+)",{"type":48,"tag":53,"props":1931,"children":1932},{},[1933],{"type":48,"tag":141,"props":1934,"children":1935},{},[1936],{"type":62,"value":1937},"Optional (enhanced observability):",{"type":48,"tag":93,"props":1939,"children":1940},{},[1941,1953,1972],{"type":48,"tag":97,"props":1942,"children":1943},{},[1944,1946,1951],{"type":62,"value":1945},"⚡ ",{"type":48,"tag":141,"props":1947,"children":1948},{},[1949],{"type":62,"value":1950},"Profiling",{"type":62,"value":1952}," — continuous UI profiling (recommended) or transaction-based sampling",{"type":48,"tag":97,"props":1954,"children":1955},{},[1956,1957,1962,1964,1970],{"type":62,"value":1945},{"type":48,"tag":141,"props":1958,"children":1959},{},[1960],{"type":62,"value":1961},"Logging",{"type":62,"value":1963}," — structured logs via ",{"type":48,"tag":113,"props":1965,"children":1967},{"className":1966},[],[1968],{"type":62,"value":1969},"Sentry.logger()",{"type":62,"value":1971},", with optional Timber bridge",{"type":48,"tag":97,"props":1973,"children":1974},{},[1975,1976,1981],{"type":62,"value":1945},{"type":48,"tag":141,"props":1977,"children":1978},{},[1979],{"type":62,"value":1980},"User Feedback",{"type":62,"value":1982}," — collect user-submitted bug reports from inside the app",{"type":48,"tag":53,"props":1984,"children":1985},{},[1986],{"type":48,"tag":141,"props":1987,"children":1988},{},[1989],{"type":62,"value":1990},"Recommendation logic:",{"type":48,"tag":1619,"props":1992,"children":1993},{},[1994,2010],{"type":48,"tag":1623,"props":1995,"children":1996},{},[1997],{"type":48,"tag":1627,"props":1998,"children":1999},{},[2000,2005],{"type":48,"tag":1631,"props":2001,"children":2002},{},[2003],{"type":62,"value":2004},"Feature",{"type":48,"tag":1631,"props":2006,"children":2007},{},[2008],{"type":62,"value":2009},"Recommend when...",{"type":48,"tag":1642,"props":2011,"children":2012},{},[2013,2030,2047,2059,2071,2083],{"type":48,"tag":1627,"props":2014,"children":2015},{},[2016,2020],{"type":48,"tag":1649,"props":2017,"children":2018},{},[2019],{"type":62,"value":1905},{"type":48,"tag":1649,"props":2021,"children":2022},{},[2023,2028],{"type":48,"tag":141,"props":2024,"children":2025},{},[2026],{"type":62,"value":2027},"Always",{"type":62,"value":2029}," — non-negotiable baseline for any Android app",{"type":48,"tag":1627,"props":2031,"children":2032},{},[2033,2037],{"type":48,"tag":1649,"props":2034,"children":2035},{},[2036],{"type":62,"value":1916},{"type":48,"tag":1649,"props":2038,"children":2039},{},[2040,2045],{"type":48,"tag":141,"props":2041,"children":2042},{},[2043],{"type":62,"value":2044},"Always for Android",{"type":62,"value":2046}," — app start time, Activity lifecycle, network latency matter",{"type":48,"tag":1627,"props":2048,"children":2049},{},[2050,2054],{"type":48,"tag":1649,"props":2051,"children":2052},{},[2053],{"type":62,"value":1927},{"type":48,"tag":1649,"props":2055,"children":2056},{},[2057],{"type":62,"value":2058},"User-facing production app on API 26+; visual debugging of user issues",{"type":48,"tag":1627,"props":2060,"children":2061},{},[2062,2066],{"type":48,"tag":1649,"props":2063,"children":2064},{},[2065],{"type":62,"value":1950},{"type":48,"tag":1649,"props":2067,"children":2068},{},[2069],{"type":62,"value":2070},"Performance-sensitive apps, startup time investigations, production perf analysis",{"type":48,"tag":1627,"props":2072,"children":2073},{},[2074,2078],{"type":48,"tag":1649,"props":2075,"children":2076},{},[2077],{"type":62,"value":1961},{"type":48,"tag":1649,"props":2079,"children":2080},{},[2081],{"type":62,"value":2082},"App uses structured logging or you want log-to-trace correlation in Sentry",{"type":48,"tag":1627,"props":2084,"children":2085},{},[2086,2090],{"type":48,"tag":1649,"props":2087,"children":2088},{},[2089],{"type":62,"value":1980},{"type":48,"tag":1649,"props":2091,"children":2092},{},[2093],{"type":62,"value":2094},"Beta or customer-facing app where you want user-submitted bug reports",{"type":48,"tag":53,"props":2096,"children":2097},{},[2098,2100],{"type":62,"value":2099},"Propose: ",{"type":48,"tag":2101,"props":2102,"children":2103},"em",{},[2104,2106,2111],{"type":62,"value":2105},"\"For your ",{"type":48,"tag":201,"props":2107,"children":2108},{},[2109],{"type":62,"value":2110},"Kotlin \u002F Java",{"type":62,"value":2112}," Android app (minSdk X), I recommend setting up Error Monitoring + Tracing + Session Replay. Want me to also add Profiling and Logging?\"",{"type":48,"tag":175,"props":2114,"children":2115},{},[],{"type":48,"tag":86,"props":2117,"children":2119},{"id":2118},"phase-3-guide",[2120],{"type":62,"value":2121},"Phase 3: Guide",{"type":48,"tag":2123,"props":2124,"children":2126},"h3",{"id":2125},"determine-your-setup-path",[2127],{"type":62,"value":2128},"Determine Your Setup Path",{"type":48,"tag":1619,"props":2130,"children":2131},{},[2132,2153],{"type":48,"tag":1623,"props":2133,"children":2134},{},[2135],{"type":48,"tag":1627,"props":2136,"children":2137},{},[2138,2143,2148],{"type":48,"tag":1631,"props":2139,"children":2140},{},[2141],{"type":62,"value":2142},"Project type",{"type":48,"tag":1631,"props":2144,"children":2145},{},[2146],{"type":62,"value":2147},"Recommended setup",{"type":48,"tag":1631,"props":2149,"children":2150},{},[2151],{"type":62,"value":2152},"Complexity",{"type":48,"tag":1642,"props":2154,"children":2155},{},[2156,2174,2192],{"type":48,"tag":1627,"props":2157,"children":2158},{},[2159,2164,2169],{"type":48,"tag":1649,"props":2160,"children":2161},{},[2162],{"type":62,"value":2163},"New project, no existing Sentry",{"type":48,"tag":1649,"props":2165,"children":2166},{},[2167],{"type":62,"value":2168},"Gradle plugin (recommended)",{"type":48,"tag":1649,"props":2170,"children":2171},{},[2172],{"type":62,"value":2173},"Low — plugin handles most config",{"type":48,"tag":1627,"props":2175,"children":2176},{},[2177,2182,2187],{"type":48,"tag":1649,"props":2178,"children":2179},{},[2180],{"type":62,"value":2181},"Existing project, no Sentry",{"type":48,"tag":1649,"props":2183,"children":2184},{},[2185],{"type":62,"value":2186},"Gradle plugin or manual init",{"type":48,"tag":1649,"props":2188,"children":2189},{},[2190],{"type":62,"value":2191},"Medium — add dependency + Application class",{"type":48,"tag":1627,"props":2193,"children":2194},{},[2195,2200,2210],{"type":48,"tag":1649,"props":2196,"children":2197},{},[2198],{"type":62,"value":2199},"Manual full control",{"type":48,"tag":1649,"props":2201,"children":2202},{},[2203,2208],{"type":48,"tag":113,"props":2204,"children":2206},{"className":2205},[],[2207],{"type":62,"value":1844},{"type":62,"value":2209}," in Application",{"type":48,"tag":1649,"props":2211,"children":2212},{},[2213],{"type":62,"value":2214},"Medium — explicit config, most flexible",{"type":48,"tag":2123,"props":2216,"children":2218},{"id":2217},"option-1-wizard-recommended",[2219],{"type":62,"value":2220},"Option 1: Wizard (Recommended)",{"type":48,"tag":49,"props":2222,"children":2223},{},[2224,2234,2244,2249],{"type":48,"tag":53,"props":2225,"children":2226},{},[2227,2232],{"type":48,"tag":141,"props":2228,"children":2229},{},[2230],{"type":62,"value":2231},"You need to run this yourself",{"type":62,"value":2233}," — the wizard opens a browser for login\nand requires interactive input that the agent can't handle.\nCopy-paste into your terminal:",{"type":48,"tag":190,"props":2235,"children":2239},{"className":2236,"code":2238,"language":62},[2237],"language-text","npx @sentry\u002Fwizard@latest -i android\n",[2240],{"type":48,"tag":113,"props":2241,"children":2242},{"__ignoreMap":195},[2243],{"type":62,"value":2238},{"type":48,"tag":53,"props":2245,"children":2246},{},[2247],{"type":62,"value":2248},"It handles login, org\u002Fproject selection, Gradle plugin setup, dependency\ninstallation, DSN configuration, and ProGuard\u002FR8 mapping upload.",{"type":48,"tag":53,"props":2250,"children":2251},{},[2252],{"type":48,"tag":141,"props":2253,"children":2254},{},[2255,2257,2263],{"type":62,"value":2256},"Once it finishes, come back and skip to ",{"type":48,"tag":57,"props":2258,"children":2260},{"href":2259},"#verification",[2261],{"type":62,"value":2262},"Verification",{"type":62,"value":2264},".",{"type":48,"tag":53,"props":2266,"children":2267},{},[2268],{"type":62,"value":2269},"If the user skips the wizard, proceed with Option 2 (Manual Setup) below.",{"type":48,"tag":175,"props":2271,"children":2272},{},[],{"type":48,"tag":2123,"props":2274,"children":2276},{"id":2275},"option-2-manual-setup",[2277],{"type":62,"value":2278},"Option 2: Manual Setup",{"type":48,"tag":2280,"props":2281,"children":2283},"h4",{"id":2282},"using-a-gradle-version-catalog-gradlelibsversionstoml",[2284,2286,2291],{"type":62,"value":2285},"Using a Gradle Version Catalog (",{"type":48,"tag":113,"props":2287,"children":2289},{"className":2288},[],[2290],{"type":62,"value":1676},{"type":62,"value":2292},")",{"type":48,"tag":53,"props":2294,"children":2295},{},[2296,2298,2303,2305,2310],{"type":62,"value":2297},"If Phase 1 detected ",{"type":48,"tag":113,"props":2299,"children":2301},{"className":2300},[],[2302],{"type":62,"value":1676},{"type":62,"value":2304},", add Sentry to the catalog ",{"type":48,"tag":141,"props":2306,"children":2307},{},[2308],{"type":62,"value":2309},"first",{"type":62,"value":2311},", then reference it from your build files. This keeps versions centralized and matches modern AGP project conventions.",{"type":48,"tag":53,"props":2313,"children":2314},{},[2315],{"type":48,"tag":141,"props":2316,"children":2317},{},[2318,2320],{"type":62,"value":2319},"Step 1 — Add entries to ",{"type":48,"tag":113,"props":2321,"children":2323},{"className":2322},[],[2324],{"type":62,"value":1676},{"type":48,"tag":190,"props":2326,"children":2330},{"className":2327,"code":2328,"language":2329,"meta":195,"style":195},"language-toml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","[versions]\nsentry = \"8.33.0\"\nsentryGradlePlugin = \"6.1.0\"\n\n[libraries]\nsentry-android = { module = \"io.sentry:sentry-android\", version.ref = \"sentry\" }\nsentry-bom = { module = \"io.sentry:sentry-bom\", version.ref = \"sentry\" }\n# Optional integrations — add only the ones your project uses:\nsentry-android-timber = { module = \"io.sentry:sentry-android-timber\" }\nsentry-android-fragment = { module = \"io.sentry:sentry-android-fragment\" }\nsentry-compose-android = { module = \"io.sentry:sentry-compose-android\" }\nsentry-android-navigation = { module = \"io.sentry:sentry-android-navigation\" }\nsentry-okhttp = { module = \"io.sentry:sentry-okhttp\" }\nsentry-android-sqlite = { module = \"io.sentry:sentry-android-sqlite\" }\nsentry-kotlin-extensions = { module = \"io.sentry:sentry-kotlin-extensions\" }\n\n[plugins]\nsentry-android-gradle = { id = \"io.sentry.android.gradle\", version.ref = \"sentryGradlePlugin\" }\n","toml",[2331],{"type":48,"tag":113,"props":2332,"children":2333},{"__ignoreMap":195},[2334,2342,2350,2358,2365,2373,2381,2389,2397,2405,2413,2421,2429,2437,2445,2453,2460,2468],{"type":48,"tag":201,"props":2335,"children":2336},{"class":203,"line":204},[2337],{"type":48,"tag":201,"props":2338,"children":2339},{},[2340],{"type":62,"value":2341},"[versions]\n",{"type":48,"tag":201,"props":2343,"children":2344},{"class":203,"line":214},[2345],{"type":48,"tag":201,"props":2346,"children":2347},{},[2348],{"type":62,"value":2349},"sentry = \"8.33.0\"\n",{"type":48,"tag":201,"props":2351,"children":2352},{"class":203,"line":256},[2353],{"type":48,"tag":201,"props":2354,"children":2355},{},[2356],{"type":62,"value":2357},"sentryGradlePlugin = \"6.1.0\"\n",{"type":48,"tag":201,"props":2359,"children":2360},{"class":203,"line":265},[2361],{"type":48,"tag":201,"props":2362,"children":2363},{"emptyLinePlaceholder":43},[2364],{"type":62,"value":262},{"type":48,"tag":201,"props":2366,"children":2367},{"class":203,"line":274},[2368],{"type":48,"tag":201,"props":2369,"children":2370},{},[2371],{"type":62,"value":2372},"[libraries]\n",{"type":48,"tag":201,"props":2374,"children":2375},{"class":203,"line":346},[2376],{"type":48,"tag":201,"props":2377,"children":2378},{},[2379],{"type":62,"value":2380},"sentry-android = { module = \"io.sentry:sentry-android\", version.ref = \"sentry\" }\n",{"type":48,"tag":201,"props":2382,"children":2383},{"class":203,"line":401},[2384],{"type":48,"tag":201,"props":2385,"children":2386},{},[2387],{"type":62,"value":2388},"sentry-bom = { module = \"io.sentry:sentry-bom\", version.ref = \"sentry\" }\n",{"type":48,"tag":201,"props":2390,"children":2391},{"class":203,"line":409},[2392],{"type":48,"tag":201,"props":2393,"children":2394},{},[2395],{"type":62,"value":2396},"# Optional integrations — add only the ones your project uses:\n",{"type":48,"tag":201,"props":2398,"children":2399},{"class":203,"line":418},[2400],{"type":48,"tag":201,"props":2401,"children":2402},{},[2403],{"type":62,"value":2404},"sentry-android-timber = { module = \"io.sentry:sentry-android-timber\" }\n",{"type":48,"tag":201,"props":2406,"children":2407},{"class":203,"line":443},[2408],{"type":48,"tag":201,"props":2409,"children":2410},{},[2411],{"type":62,"value":2412},"sentry-android-fragment = { module = \"io.sentry:sentry-android-fragment\" }\n",{"type":48,"tag":201,"props":2414,"children":2415},{"class":203,"line":451},[2416],{"type":48,"tag":201,"props":2417,"children":2418},{},[2419],{"type":62,"value":2420},"sentry-compose-android = { module = \"io.sentry:sentry-compose-android\" }\n",{"type":48,"tag":201,"props":2422,"children":2423},{"class":203,"line":460},[2424],{"type":48,"tag":201,"props":2425,"children":2426},{},[2427],{"type":62,"value":2428},"sentry-android-navigation = { module = \"io.sentry:sentry-android-navigation\" }\n",{"type":48,"tag":201,"props":2430,"children":2431},{"class":203,"line":481},[2432],{"type":48,"tag":201,"props":2433,"children":2434},{},[2435],{"type":62,"value":2436},"sentry-okhttp = { module = \"io.sentry:sentry-okhttp\" }\n",{"type":48,"tag":201,"props":2438,"children":2439},{"class":203,"line":489},[2440],{"type":48,"tag":201,"props":2441,"children":2442},{},[2443],{"type":62,"value":2444},"sentry-android-sqlite = { module = \"io.sentry:sentry-android-sqlite\" }\n",{"type":48,"tag":201,"props":2446,"children":2447},{"class":203,"line":498},[2448],{"type":48,"tag":201,"props":2449,"children":2450},{},[2451],{"type":62,"value":2452},"sentry-kotlin-extensions = { module = \"io.sentry:sentry-kotlin-extensions\" }\n",{"type":48,"tag":201,"props":2454,"children":2455},{"class":203,"line":548},[2456],{"type":48,"tag":201,"props":2457,"children":2458},{"emptyLinePlaceholder":43},[2459],{"type":62,"value":262},{"type":48,"tag":201,"props":2461,"children":2462},{"class":203,"line":556},[2463],{"type":48,"tag":201,"props":2464,"children":2465},{},[2466],{"type":62,"value":2467},"[plugins]\n",{"type":48,"tag":201,"props":2469,"children":2470},{"class":203,"line":565},[2471],{"type":48,"tag":201,"props":2472,"children":2473},{},[2474],{"type":62,"value":2475},"sentry-android-gradle = { id = \"io.sentry.android.gradle\", version.ref = \"sentryGradlePlugin\" }\n",{"type":48,"tag":49,"props":2477,"children":2478},{},[2479],{"type":48,"tag":53,"props":2480,"children":2481},{},[2482,2486,2488,2494,2496,2502,2504,2509],{"type":48,"tag":141,"props":2483,"children":2484},{},[2485],{"type":62,"value":145},{"type":62,"value":2487}," Optional integration entries omit ",{"type":48,"tag":113,"props":2489,"children":2491},{"className":2490},[],[2492],{"type":62,"value":2493},"version.ref",{"type":62,"value":2495}," — their versions come from the BOM at resolution time. Only ",{"type":48,"tag":113,"props":2497,"children":2499},{"className":2498},[],[2500],{"type":62,"value":2501},"sentry-bom",{"type":62,"value":2503}," needs the version ref.\nIf the catalog already defines a ",{"type":48,"tag":113,"props":2505,"children":2507},{"className":2506},[],[2508],{"type":62,"value":8},{"type":62,"value":2510}," version, reuse it instead of adding a duplicate entry.",{"type":48,"tag":53,"props":2512,"children":2513},{},[2514],{"type":48,"tag":141,"props":2515,"children":2516},{},[2517,2519],{"type":62,"value":2518},"Step 2 — Reference the catalog from ",{"type":48,"tag":113,"props":2520,"children":2522},{"className":2521},[],[2523],{"type":62,"value":2524},"build.gradle[.kts]",{"type":48,"tag":53,"props":2526,"children":2527},{},[2528,2530,2535],{"type":62,"value":2529},"Project-level ",{"type":48,"tag":113,"props":2531,"children":2533},{"className":2532},[],[2534],{"type":62,"value":1657},{"type":62,"value":2536},":",{"type":48,"tag":190,"props":2538,"children":2542},{"className":2539,"code":2540,"language":2541,"meta":195,"style":195},"language-kotlin shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","plugins {\n    alias(libs.plugins.sentry.android.gradle) apply false\n}\n","kotlin",[2543],{"type":48,"tag":113,"props":2544,"children":2545},{"__ignoreMap":195},[2546,2554,2562],{"type":48,"tag":201,"props":2547,"children":2548},{"class":203,"line":204},[2549],{"type":48,"tag":201,"props":2550,"children":2551},{},[2552],{"type":62,"value":2553},"plugins {\n",{"type":48,"tag":201,"props":2555,"children":2556},{"class":203,"line":214},[2557],{"type":48,"tag":201,"props":2558,"children":2559},{},[2560],{"type":62,"value":2561},"    alias(libs.plugins.sentry.android.gradle) apply false\n",{"type":48,"tag":201,"props":2563,"children":2564},{"class":203,"line":256},[2565],{"type":48,"tag":201,"props":2566,"children":2567},{},[2568],{"type":62,"value":2569},"}\n",{"type":48,"tag":53,"props":2571,"children":2572},{},[2573,2575,2581],{"type":62,"value":2574},"App-level ",{"type":48,"tag":113,"props":2576,"children":2578},{"className":2577},[],[2579],{"type":62,"value":2580},"app\u002Fbuild.gradle.kts",{"type":62,"value":2536},{"type":48,"tag":190,"props":2583,"children":2585},{"className":2539,"code":2584,"language":2541,"meta":195,"style":195},"plugins {\n    id(\"com.android.application\")\n    alias(libs.plugins.sentry.android.gradle)\n}\n\ndependencies {\n    implementation(platform(libs.sentry.bom))\n    implementation(libs.sentry.android)\n    \u002F\u002F implementation(libs.sentry.okhttp)\n    \u002F\u002F implementation(libs.sentry.compose.android)\n}\n",[2586],{"type":48,"tag":113,"props":2587,"children":2588},{"__ignoreMap":195},[2589,2596,2604,2612,2619,2626,2634,2642,2650,2658,2666],{"type":48,"tag":201,"props":2590,"children":2591},{"class":203,"line":204},[2592],{"type":48,"tag":201,"props":2593,"children":2594},{},[2595],{"type":62,"value":2553},{"type":48,"tag":201,"props":2597,"children":2598},{"class":203,"line":214},[2599],{"type":48,"tag":201,"props":2600,"children":2601},{},[2602],{"type":62,"value":2603},"    id(\"com.android.application\")\n",{"type":48,"tag":201,"props":2605,"children":2606},{"class":203,"line":256},[2607],{"type":48,"tag":201,"props":2608,"children":2609},{},[2610],{"type":62,"value":2611},"    alias(libs.plugins.sentry.android.gradle)\n",{"type":48,"tag":201,"props":2613,"children":2614},{"class":203,"line":265},[2615],{"type":48,"tag":201,"props":2616,"children":2617},{},[2618],{"type":62,"value":2569},{"type":48,"tag":201,"props":2620,"children":2621},{"class":203,"line":274},[2622],{"type":48,"tag":201,"props":2623,"children":2624},{"emptyLinePlaceholder":43},[2625],{"type":62,"value":262},{"type":48,"tag":201,"props":2627,"children":2628},{"class":203,"line":346},[2629],{"type":48,"tag":201,"props":2630,"children":2631},{},[2632],{"type":62,"value":2633},"dependencies {\n",{"type":48,"tag":201,"props":2635,"children":2636},{"class":203,"line":401},[2637],{"type":48,"tag":201,"props":2638,"children":2639},{},[2640],{"type":62,"value":2641},"    implementation(platform(libs.sentry.bom))\n",{"type":48,"tag":201,"props":2643,"children":2644},{"class":203,"line":409},[2645],{"type":48,"tag":201,"props":2646,"children":2647},{},[2648],{"type":62,"value":2649},"    implementation(libs.sentry.android)\n",{"type":48,"tag":201,"props":2651,"children":2652},{"class":203,"line":418},[2653],{"type":48,"tag":201,"props":2654,"children":2655},{},[2656],{"type":62,"value":2657},"    \u002F\u002F implementation(libs.sentry.okhttp)\n",{"type":48,"tag":201,"props":2659,"children":2660},{"class":203,"line":443},[2661],{"type":48,"tag":201,"props":2662,"children":2663},{},[2664],{"type":62,"value":2665},"    \u002F\u002F implementation(libs.sentry.compose.android)\n",{"type":48,"tag":201,"props":2667,"children":2668},{"class":203,"line":451},[2669],{"type":48,"tag":201,"props":2670,"children":2671},{},[2672],{"type":62,"value":2569},{"type":48,"tag":53,"props":2674,"children":2675},{},[2676,2678,2684],{"type":62,"value":2677},"Groovy DSL (",{"type":48,"tag":113,"props":2679,"children":2681},{"className":2680},[],[2682],{"type":62,"value":2683},"app\u002Fbuild.gradle",{"type":62,"value":2685},") equivalent:",{"type":48,"tag":190,"props":2687,"children":2691},{"className":2688,"code":2689,"language":2690,"meta":195,"style":195},"language-groovy shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","plugins {\n    id \"com.android.application\"\n    alias libs.plugins.sentry.android.gradle\n}\n\ndependencies {\n    implementation platform(libs.sentry.bom)\n    implementation libs.sentry.android\n}\n","groovy",[2692],{"type":48,"tag":113,"props":2693,"children":2694},{"__ignoreMap":195},[2695,2702,2710,2718,2725,2732,2739,2747,2755],{"type":48,"tag":201,"props":2696,"children":2697},{"class":203,"line":204},[2698],{"type":48,"tag":201,"props":2699,"children":2700},{},[2701],{"type":62,"value":2553},{"type":48,"tag":201,"props":2703,"children":2704},{"class":203,"line":214},[2705],{"type":48,"tag":201,"props":2706,"children":2707},{},[2708],{"type":62,"value":2709},"    id \"com.android.application\"\n",{"type":48,"tag":201,"props":2711,"children":2712},{"class":203,"line":256},[2713],{"type":48,"tag":201,"props":2714,"children":2715},{},[2716],{"type":62,"value":2717},"    alias libs.plugins.sentry.android.gradle\n",{"type":48,"tag":201,"props":2719,"children":2720},{"class":203,"line":265},[2721],{"type":48,"tag":201,"props":2722,"children":2723},{},[2724],{"type":62,"value":2569},{"type":48,"tag":201,"props":2726,"children":2727},{"class":203,"line":274},[2728],{"type":48,"tag":201,"props":2729,"children":2730},{"emptyLinePlaceholder":43},[2731],{"type":62,"value":262},{"type":48,"tag":201,"props":2733,"children":2734},{"class":203,"line":346},[2735],{"type":48,"tag":201,"props":2736,"children":2737},{},[2738],{"type":62,"value":2633},{"type":48,"tag":201,"props":2740,"children":2741},{"class":203,"line":401},[2742],{"type":48,"tag":201,"props":2743,"children":2744},{},[2745],{"type":62,"value":2746},"    implementation platform(libs.sentry.bom)\n",{"type":48,"tag":201,"props":2748,"children":2749},{"class":203,"line":409},[2750],{"type":48,"tag":201,"props":2751,"children":2752},{},[2753],{"type":62,"value":2754},"    implementation libs.sentry.android\n",{"type":48,"tag":201,"props":2756,"children":2757},{"class":203,"line":418},[2758],{"type":48,"tag":201,"props":2759,"children":2760},{},[2761],{"type":62,"value":2569},{"type":48,"tag":53,"props":2763,"children":2764},{},[2765,2767,2773],{"type":62,"value":2766},"Then continue with the ",{"type":48,"tag":113,"props":2768,"children":2770},{"className":2769},[],[2771],{"type":62,"value":2772},"sentry {}",{"type":62,"value":2774}," configuration block from Path A, Step 2 below. The rest of the setup (Application class init, manifest registration, verification) is identical.",{"type":48,"tag":175,"props":2776,"children":2777},{},[],{"type":48,"tag":2280,"props":2779,"children":2781},{"id":2780},"path-a-gradle-plugin-recommended",[2782],{"type":62,"value":2783},"Path A: Gradle Plugin (Recommended)",{"type":48,"tag":53,"props":2785,"children":2786},{},[2787],{"type":62,"value":2788},"The Sentry Gradle plugin is the easiest setup path. It:",{"type":48,"tag":93,"props":2790,"children":2791},{},[2792,2797,2802],{"type":48,"tag":97,"props":2793,"children":2794},{},[2795],{"type":62,"value":2796},"Uploads ProGuard\u002FR8 mapping files automatically on release builds",{"type":48,"tag":97,"props":2798,"children":2799},{},[2800],{"type":62,"value":2801},"Injects source context into stack frames",{"type":48,"tag":97,"props":2803,"children":2804},{},[2805,2807,2813],{"type":62,"value":2806},"Optionally instruments OkHttp, Room\u002FSQLite, File I\u002FO, Compose navigation, and ",{"type":48,"tag":113,"props":2808,"children":2810},{"className":2809},[],[2811],{"type":62,"value":2812},"android.util.Log",{"type":62,"value":2814}," via bytecode transforms (zero source changes)",{"type":48,"tag":53,"props":2816,"children":2817},{},[2818],{"type":48,"tag":141,"props":2819,"children":2820},{},[2821,2823,2828],{"type":62,"value":2822},"Step 1 — Add the plugin to ",{"type":48,"tag":113,"props":2824,"children":2826},{"className":2825},[],[2827],{"type":62,"value":2524},{"type":62,"value":2829}," (project-level)",{"type":48,"tag":53,"props":2831,"children":2832},{},[2833,2834,2840],{"type":62,"value":2677},{"type":48,"tag":113,"props":2835,"children":2837},{"className":2836},[],[2838],{"type":62,"value":2839},"build.gradle",{"type":62,"value":2841},"):",{"type":48,"tag":190,"props":2843,"children":2845},{"className":2688,"code":2844,"language":2690,"meta":195,"style":195},"plugins {\n    id \"io.sentry.android.gradle\" version \"6.1.0\" apply false\n}\n",[2846],{"type":48,"tag":113,"props":2847,"children":2848},{"__ignoreMap":195},[2849,2856,2864],{"type":48,"tag":201,"props":2850,"children":2851},{"class":203,"line":204},[2852],{"type":48,"tag":201,"props":2853,"children":2854},{},[2855],{"type":62,"value":2553},{"type":48,"tag":201,"props":2857,"children":2858},{"class":203,"line":214},[2859],{"type":48,"tag":201,"props":2860,"children":2861},{},[2862],{"type":62,"value":2863},"    id \"io.sentry.android.gradle\" version \"6.1.0\" apply false\n",{"type":48,"tag":201,"props":2865,"children":2866},{"class":203,"line":256},[2867],{"type":48,"tag":201,"props":2868,"children":2869},{},[2870],{"type":62,"value":2569},{"type":48,"tag":53,"props":2872,"children":2873},{},[2874,2876,2881],{"type":62,"value":2875},"Kotlin DSL (",{"type":48,"tag":113,"props":2877,"children":2879},{"className":2878},[],[2880],{"type":62,"value":1657},{"type":62,"value":2841},{"type":48,"tag":190,"props":2883,"children":2885},{"className":2539,"code":2884,"language":2541,"meta":195,"style":195},"plugins {\n    id(\"io.sentry.android.gradle\") version \"6.1.0\" apply false\n}\n",[2886],{"type":48,"tag":113,"props":2887,"children":2888},{"__ignoreMap":195},[2889,2896,2904],{"type":48,"tag":201,"props":2890,"children":2891},{"class":203,"line":204},[2892],{"type":48,"tag":201,"props":2893,"children":2894},{},[2895],{"type":62,"value":2553},{"type":48,"tag":201,"props":2897,"children":2898},{"class":203,"line":214},[2899],{"type":48,"tag":201,"props":2900,"children":2901},{},[2902],{"type":62,"value":2903},"    id(\"io.sentry.android.gradle\") version \"6.1.0\" apply false\n",{"type":48,"tag":201,"props":2905,"children":2906},{"class":203,"line":256},[2907],{"type":48,"tag":201,"props":2908,"children":2909},{},[2910],{"type":62,"value":2569},{"type":48,"tag":53,"props":2912,"children":2913},{},[2914],{"type":48,"tag":141,"props":2915,"children":2916},{},[2917,2919],{"type":62,"value":2918},"Step 2 — Apply plugin + add dependencies in ",{"type":48,"tag":113,"props":2920,"children":2922},{"className":2921},[],[2923],{"type":62,"value":2924},"app\u002Fbuild.gradle[.kts]",{"type":48,"tag":53,"props":2926,"children":2927},{},[2928],{"type":62,"value":2929},"Groovy DSL:",{"type":48,"tag":190,"props":2931,"children":2933},{"className":2688,"code":2932,"language":2690,"meta":195,"style":195},"plugins {\n    id \"com.android.application\"\n    id \"io.sentry.android.gradle\"\n}\n\nandroid {\n    \u002F\u002F ...\n}\n\ndependencies {\n    \u002F\u002F Use BOM for consistent versions across sentry modules\n    implementation platform(\"io.sentry:sentry-bom:8.33.0\")\n    implementation \"io.sentry:sentry-android\"\n\n    \u002F\u002F Optional integrations (add what's relevant):\n    \u002F\u002F implementation \"io.sentry:sentry-android-timber\"     \u002F\u002F Timber bridge\n    \u002F\u002F implementation \"io.sentry:sentry-android-fragment\"   \u002F\u002F Fragment lifecycle tracing\n    \u002F\u002F implementation \"io.sentry:sentry-compose-android\"    \u002F\u002F Jetpack Compose support\n    \u002F\u002F implementation \"io.sentry:sentry-android-navigation\"  \u002F\u002F Jetpack Navigation\n    \u002F\u002F implementation \"io.sentry:sentry-okhttp\"             \u002F\u002F OkHttp interceptor\n    \u002F\u002F implementation \"io.sentry:sentry-android-sqlite\"     \u002F\u002F Room\u002FSQLite tracing\n    \u002F\u002F implementation \"io.sentry:sentry-kotlin-extensions\"  \u002F\u002F Coroutine context propagation\n}\n\nsentry {\n    org = \"YOUR_ORG_SLUG\"\n    projectName = \"YOUR_PROJECT_SLUG\"\n    authToken = System.getenv(\"SENTRY_AUTH_TOKEN\")\n\n    \u002F\u002F Enable auto-instrumentation via bytecode transforms (no source changes needed)\n    tracingInstrumentation {\n        enabled = true\n        features = [InstrumentationFeature.DATABASE, InstrumentationFeature.FILE_IO,\n                    InstrumentationFeature.OKHTTP, InstrumentationFeature.COMPOSE]\n    }\n\n    \u002F\u002F Upload ProGuard mapping and source context on release\n    autoUploadProguardMapping = true\n    includeSourceContext = true\n}\n",[2934],{"type":48,"tag":113,"props":2935,"children":2936},{"__ignoreMap":195},[2937,2944,2951,2959,2966,2973,2981,2989,2996,3003,3010,3018,3026,3034,3041,3049,3062,3075,3088,3101,3114,3127,3140,3147,3154,3162,3170,3178,3186,3193,3201,3209,3217,3225,3233,3241,3248,3256,3264,3272],{"type":48,"tag":201,"props":2938,"children":2939},{"class":203,"line":204},[2940],{"type":48,"tag":201,"props":2941,"children":2942},{},[2943],{"type":62,"value":2553},{"type":48,"tag":201,"props":2945,"children":2946},{"class":203,"line":214},[2947],{"type":48,"tag":201,"props":2948,"children":2949},{},[2950],{"type":62,"value":2709},{"type":48,"tag":201,"props":2952,"children":2953},{"class":203,"line":256},[2954],{"type":48,"tag":201,"props":2955,"children":2956},{},[2957],{"type":62,"value":2958},"    id \"io.sentry.android.gradle\"\n",{"type":48,"tag":201,"props":2960,"children":2961},{"class":203,"line":265},[2962],{"type":48,"tag":201,"props":2963,"children":2964},{},[2965],{"type":62,"value":2569},{"type":48,"tag":201,"props":2967,"children":2968},{"class":203,"line":274},[2969],{"type":48,"tag":201,"props":2970,"children":2971},{"emptyLinePlaceholder":43},[2972],{"type":62,"value":262},{"type":48,"tag":201,"props":2974,"children":2975},{"class":203,"line":346},[2976],{"type":48,"tag":201,"props":2977,"children":2978},{},[2979],{"type":62,"value":2980},"android {\n",{"type":48,"tag":201,"props":2982,"children":2983},{"class":203,"line":401},[2984],{"type":48,"tag":201,"props":2985,"children":2986},{},[2987],{"type":62,"value":2988},"    \u002F\u002F ...\n",{"type":48,"tag":201,"props":2990,"children":2991},{"class":203,"line":409},[2992],{"type":48,"tag":201,"props":2993,"children":2994},{},[2995],{"type":62,"value":2569},{"type":48,"tag":201,"props":2997,"children":2998},{"class":203,"line":418},[2999],{"type":48,"tag":201,"props":3000,"children":3001},{"emptyLinePlaceholder":43},[3002],{"type":62,"value":262},{"type":48,"tag":201,"props":3004,"children":3005},{"class":203,"line":443},[3006],{"type":48,"tag":201,"props":3007,"children":3008},{},[3009],{"type":62,"value":2633},{"type":48,"tag":201,"props":3011,"children":3012},{"class":203,"line":451},[3013],{"type":48,"tag":201,"props":3014,"children":3015},{},[3016],{"type":62,"value":3017},"    \u002F\u002F Use BOM for consistent versions across sentry modules\n",{"type":48,"tag":201,"props":3019,"children":3020},{"class":203,"line":460},[3021],{"type":48,"tag":201,"props":3022,"children":3023},{},[3024],{"type":62,"value":3025},"    implementation platform(\"io.sentry:sentry-bom:8.33.0\")\n",{"type":48,"tag":201,"props":3027,"children":3028},{"class":203,"line":481},[3029],{"type":48,"tag":201,"props":3030,"children":3031},{},[3032],{"type":62,"value":3033},"    implementation \"io.sentry:sentry-android\"\n",{"type":48,"tag":201,"props":3035,"children":3036},{"class":203,"line":489},[3037],{"type":48,"tag":201,"props":3038,"children":3039},{"emptyLinePlaceholder":43},[3040],{"type":62,"value":262},{"type":48,"tag":201,"props":3042,"children":3043},{"class":203,"line":498},[3044],{"type":48,"tag":201,"props":3045,"children":3046},{},[3047],{"type":62,"value":3048},"    \u002F\u002F Optional integrations (add what's relevant):\n",{"type":48,"tag":201,"props":3050,"children":3051},{"class":203,"line":548},[3052,3057],{"type":48,"tag":201,"props":3053,"children":3054},{},[3055],{"type":62,"value":3056},"    \u002F\u002F implementation \"io.sentry:sentry-android-timber\"",{"type":48,"tag":201,"props":3058,"children":3059},{},[3060],{"type":62,"value":3061},"     \u002F\u002F Timber bridge\n",{"type":48,"tag":201,"props":3063,"children":3064},{"class":203,"line":556},[3065,3070],{"type":48,"tag":201,"props":3066,"children":3067},{},[3068],{"type":62,"value":3069},"    \u002F\u002F implementation \"io.sentry:sentry-android-fragment\"",{"type":48,"tag":201,"props":3071,"children":3072},{},[3073],{"type":62,"value":3074},"   \u002F\u002F Fragment lifecycle tracing\n",{"type":48,"tag":201,"props":3076,"children":3077},{"class":203,"line":565},[3078,3083],{"type":48,"tag":201,"props":3079,"children":3080},{},[3081],{"type":62,"value":3082},"    \u002F\u002F implementation \"io.sentry:sentry-compose-android\"",{"type":48,"tag":201,"props":3084,"children":3085},{},[3086],{"type":62,"value":3087},"    \u002F\u002F Jetpack Compose support\n",{"type":48,"tag":201,"props":3089,"children":3090},{"class":203,"line":628},[3091,3096],{"type":48,"tag":201,"props":3092,"children":3093},{},[3094],{"type":62,"value":3095},"    \u002F\u002F implementation \"io.sentry:sentry-android-navigation\"",{"type":48,"tag":201,"props":3097,"children":3098},{},[3099],{"type":62,"value":3100},"  \u002F\u002F Jetpack Navigation\n",{"type":48,"tag":201,"props":3102,"children":3103},{"class":203,"line":636},[3104,3109],{"type":48,"tag":201,"props":3105,"children":3106},{},[3107],{"type":62,"value":3108},"    \u002F\u002F implementation \"io.sentry:sentry-okhttp\"",{"type":48,"tag":201,"props":3110,"children":3111},{},[3112],{"type":62,"value":3113},"             \u002F\u002F OkHttp interceptor\n",{"type":48,"tag":201,"props":3115,"children":3116},{"class":203,"line":645},[3117,3122],{"type":48,"tag":201,"props":3118,"children":3119},{},[3120],{"type":62,"value":3121},"    \u002F\u002F implementation \"io.sentry:sentry-android-sqlite\"",{"type":48,"tag":201,"props":3123,"children":3124},{},[3125],{"type":62,"value":3126},"     \u002F\u002F Room\u002FSQLite tracing\n",{"type":48,"tag":201,"props":3128,"children":3129},{"class":203,"line":699},[3130,3135],{"type":48,"tag":201,"props":3131,"children":3132},{},[3133],{"type":62,"value":3134},"    \u002F\u002F implementation \"io.sentry:sentry-kotlin-extensions\"",{"type":48,"tag":201,"props":3136,"children":3137},{},[3138],{"type":62,"value":3139},"  \u002F\u002F Coroutine context propagation\n",{"type":48,"tag":201,"props":3141,"children":3142},{"class":203,"line":748},[3143],{"type":48,"tag":201,"props":3144,"children":3145},{},[3146],{"type":62,"value":2569},{"type":48,"tag":201,"props":3148,"children":3149},{"class":203,"line":756},[3150],{"type":48,"tag":201,"props":3151,"children":3152},{"emptyLinePlaceholder":43},[3153],{"type":62,"value":262},{"type":48,"tag":201,"props":3155,"children":3156},{"class":203,"line":765},[3157],{"type":48,"tag":201,"props":3158,"children":3159},{},[3160],{"type":62,"value":3161},"sentry {\n",{"type":48,"tag":201,"props":3163,"children":3164},{"class":203,"line":819},[3165],{"type":48,"tag":201,"props":3166,"children":3167},{},[3168],{"type":62,"value":3169},"    org = \"YOUR_ORG_SLUG\"\n",{"type":48,"tag":201,"props":3171,"children":3172},{"class":203,"line":827},[3173],{"type":48,"tag":201,"props":3174,"children":3175},{},[3176],{"type":62,"value":3177},"    projectName = \"YOUR_PROJECT_SLUG\"\n",{"type":48,"tag":201,"props":3179,"children":3180},{"class":203,"line":836},[3181],{"type":48,"tag":201,"props":3182,"children":3183},{},[3184],{"type":62,"value":3185},"    authToken = System.getenv(\"SENTRY_AUTH_TOKEN\")\n",{"type":48,"tag":201,"props":3187,"children":3188},{"class":203,"line":889},[3189],{"type":48,"tag":201,"props":3190,"children":3191},{"emptyLinePlaceholder":43},[3192],{"type":62,"value":262},{"type":48,"tag":201,"props":3194,"children":3195},{"class":203,"line":31},[3196],{"type":48,"tag":201,"props":3197,"children":3198},{},[3199],{"type":62,"value":3200},"    \u002F\u002F Enable auto-instrumentation via bytecode transforms (no source changes needed)\n",{"type":48,"tag":201,"props":3202,"children":3203},{"class":203,"line":905},[3204],{"type":48,"tag":201,"props":3205,"children":3206},{},[3207],{"type":62,"value":3208},"    tracingInstrumentation {\n",{"type":48,"tag":201,"props":3210,"children":3211},{"class":203,"line":958},[3212],{"type":48,"tag":201,"props":3213,"children":3214},{},[3215],{"type":62,"value":3216},"        enabled = true\n",{"type":48,"tag":201,"props":3218,"children":3219},{"class":203,"line":966},[3220],{"type":48,"tag":201,"props":3221,"children":3222},{},[3223],{"type":62,"value":3224},"        features = [InstrumentationFeature.DATABASE, InstrumentationFeature.FILE_IO,\n",{"type":48,"tag":201,"props":3226,"children":3227},{"class":203,"line":975},[3228],{"type":48,"tag":201,"props":3229,"children":3230},{},[3231],{"type":62,"value":3232},"                    InstrumentationFeature.OKHTTP, InstrumentationFeature.COMPOSE]\n",{"type":48,"tag":201,"props":3234,"children":3235},{"class":203,"line":1028},[3236],{"type":48,"tag":201,"props":3237,"children":3238},{},[3239],{"type":62,"value":3240},"    }\n",{"type":48,"tag":201,"props":3242,"children":3243},{"class":203,"line":1036},[3244],{"type":48,"tag":201,"props":3245,"children":3246},{"emptyLinePlaceholder":43},[3247],{"type":62,"value":262},{"type":48,"tag":201,"props":3249,"children":3250},{"class":203,"line":1045},[3251],{"type":48,"tag":201,"props":3252,"children":3253},{},[3254],{"type":62,"value":3255},"    \u002F\u002F Upload ProGuard mapping and source context on release\n",{"type":48,"tag":201,"props":3257,"children":3258},{"class":203,"line":1098},[3259],{"type":48,"tag":201,"props":3260,"children":3261},{},[3262],{"type":62,"value":3263},"    autoUploadProguardMapping = true\n",{"type":48,"tag":201,"props":3265,"children":3266},{"class":203,"line":1106},[3267],{"type":48,"tag":201,"props":3268,"children":3269},{},[3270],{"type":62,"value":3271},"    includeSourceContext = true\n",{"type":48,"tag":201,"props":3273,"children":3274},{"class":203,"line":1115},[3275],{"type":48,"tag":201,"props":3276,"children":3277},{},[3278],{"type":62,"value":2569},{"type":48,"tag":53,"props":3280,"children":3281},{},[3282,3283,3288],{"type":62,"value":2875},{"type":48,"tag":113,"props":3284,"children":3286},{"className":3285},[],[3287],{"type":62,"value":2580},{"type":62,"value":2841},{"type":48,"tag":190,"props":3290,"children":3292},{"className":2539,"code":3291,"language":2541,"meta":195,"style":195},"plugins {\n    id(\"com.android.application\")\n    id(\"io.sentry.android.gradle\")\n}\n\ndependencies {\n    implementation(platform(\"io.sentry:sentry-bom:8.33.0\"))\n    implementation(\"io.sentry:sentry-android\")\n\n    \u002F\u002F Optional integrations:\n    \u002F\u002F implementation(\"io.sentry:sentry-android-timber\")\n    \u002F\u002F implementation(\"io.sentry:sentry-android-fragment\")\n    \u002F\u002F implementation(\"io.sentry:sentry-compose-android\")\n    \u002F\u002F implementation(\"io.sentry:sentry-android-navigation\")\n    \u002F\u002F implementation(\"io.sentry:sentry-okhttp\")\n    \u002F\u002F implementation(\"io.sentry:sentry-android-sqlite\")\n    \u002F\u002F implementation(\"io.sentry:sentry-kotlin-extensions\")\n}\n\nsentry {\n    org = \"YOUR_ORG_SLUG\"\n    projectName = \"YOUR_PROJECT_SLUG\"\n    authToken = System.getenv(\"SENTRY_AUTH_TOKEN\")\n\n    tracingInstrumentation {\n        enabled = true\n        features = setOf(\n            InstrumentationFeature.DATABASE,\n            InstrumentationFeature.FILE_IO,\n            InstrumentationFeature.OKHTTP,\n            InstrumentationFeature.COMPOSE,\n        )\n    }\n\n    autoUploadProguardMapping = true\n    includeSourceContext = true\n}\n",[3293],{"type":48,"tag":113,"props":3294,"children":3295},{"__ignoreMap":195},[3296,3303,3310,3318,3325,3332,3339,3347,3355,3362,3370,3378,3386,3394,3402,3410,3418,3426,3433,3440,3447,3454,3461,3468,3475,3482,3489,3497,3505,3513,3521,3529,3537,3544,3551,3558,3565],{"type":48,"tag":201,"props":3297,"children":3298},{"class":203,"line":204},[3299],{"type":48,"tag":201,"props":3300,"children":3301},{},[3302],{"type":62,"value":2553},{"type":48,"tag":201,"props":3304,"children":3305},{"class":203,"line":214},[3306],{"type":48,"tag":201,"props":3307,"children":3308},{},[3309],{"type":62,"value":2603},{"type":48,"tag":201,"props":3311,"children":3312},{"class":203,"line":256},[3313],{"type":48,"tag":201,"props":3314,"children":3315},{},[3316],{"type":62,"value":3317},"    id(\"io.sentry.android.gradle\")\n",{"type":48,"tag":201,"props":3319,"children":3320},{"class":203,"line":265},[3321],{"type":48,"tag":201,"props":3322,"children":3323},{},[3324],{"type":62,"value":2569},{"type":48,"tag":201,"props":3326,"children":3327},{"class":203,"line":274},[3328],{"type":48,"tag":201,"props":3329,"children":3330},{"emptyLinePlaceholder":43},[3331],{"type":62,"value":262},{"type":48,"tag":201,"props":3333,"children":3334},{"class":203,"line":346},[3335],{"type":48,"tag":201,"props":3336,"children":3337},{},[3338],{"type":62,"value":2633},{"type":48,"tag":201,"props":3340,"children":3341},{"class":203,"line":401},[3342],{"type":48,"tag":201,"props":3343,"children":3344},{},[3345],{"type":62,"value":3346},"    implementation(platform(\"io.sentry:sentry-bom:8.33.0\"))\n",{"type":48,"tag":201,"props":3348,"children":3349},{"class":203,"line":409},[3350],{"type":48,"tag":201,"props":3351,"children":3352},{},[3353],{"type":62,"value":3354},"    implementation(\"io.sentry:sentry-android\")\n",{"type":48,"tag":201,"props":3356,"children":3357},{"class":203,"line":418},[3358],{"type":48,"tag":201,"props":3359,"children":3360},{"emptyLinePlaceholder":43},[3361],{"type":62,"value":262},{"type":48,"tag":201,"props":3363,"children":3364},{"class":203,"line":443},[3365],{"type":48,"tag":201,"props":3366,"children":3367},{},[3368],{"type":62,"value":3369},"    \u002F\u002F Optional integrations:\n",{"type":48,"tag":201,"props":3371,"children":3372},{"class":203,"line":451},[3373],{"type":48,"tag":201,"props":3374,"children":3375},{},[3376],{"type":62,"value":3377},"    \u002F\u002F implementation(\"io.sentry:sentry-android-timber\")\n",{"type":48,"tag":201,"props":3379,"children":3380},{"class":203,"line":460},[3381],{"type":48,"tag":201,"props":3382,"children":3383},{},[3384],{"type":62,"value":3385},"    \u002F\u002F implementation(\"io.sentry:sentry-android-fragment\")\n",{"type":48,"tag":201,"props":3387,"children":3388},{"class":203,"line":481},[3389],{"type":48,"tag":201,"props":3390,"children":3391},{},[3392],{"type":62,"value":3393},"    \u002F\u002F implementation(\"io.sentry:sentry-compose-android\")\n",{"type":48,"tag":201,"props":3395,"children":3396},{"class":203,"line":489},[3397],{"type":48,"tag":201,"props":3398,"children":3399},{},[3400],{"type":62,"value":3401},"    \u002F\u002F implementation(\"io.sentry:sentry-android-navigation\")\n",{"type":48,"tag":201,"props":3403,"children":3404},{"class":203,"line":498},[3405],{"type":48,"tag":201,"props":3406,"children":3407},{},[3408],{"type":62,"value":3409},"    \u002F\u002F implementation(\"io.sentry:sentry-okhttp\")\n",{"type":48,"tag":201,"props":3411,"children":3412},{"class":203,"line":548},[3413],{"type":48,"tag":201,"props":3414,"children":3415},{},[3416],{"type":62,"value":3417},"    \u002F\u002F implementation(\"io.sentry:sentry-android-sqlite\")\n",{"type":48,"tag":201,"props":3419,"children":3420},{"class":203,"line":556},[3421],{"type":48,"tag":201,"props":3422,"children":3423},{},[3424],{"type":62,"value":3425},"    \u002F\u002F implementation(\"io.sentry:sentry-kotlin-extensions\")\n",{"type":48,"tag":201,"props":3427,"children":3428},{"class":203,"line":565},[3429],{"type":48,"tag":201,"props":3430,"children":3431},{},[3432],{"type":62,"value":2569},{"type":48,"tag":201,"props":3434,"children":3435},{"class":203,"line":628},[3436],{"type":48,"tag":201,"props":3437,"children":3438},{"emptyLinePlaceholder":43},[3439],{"type":62,"value":262},{"type":48,"tag":201,"props":3441,"children":3442},{"class":203,"line":636},[3443],{"type":48,"tag":201,"props":3444,"children":3445},{},[3446],{"type":62,"value":3161},{"type":48,"tag":201,"props":3448,"children":3449},{"class":203,"line":645},[3450],{"type":48,"tag":201,"props":3451,"children":3452},{},[3453],{"type":62,"value":3169},{"type":48,"tag":201,"props":3455,"children":3456},{"class":203,"line":699},[3457],{"type":48,"tag":201,"props":3458,"children":3459},{},[3460],{"type":62,"value":3177},{"type":48,"tag":201,"props":3462,"children":3463},{"class":203,"line":748},[3464],{"type":48,"tag":201,"props":3465,"children":3466},{},[3467],{"type":62,"value":3185},{"type":48,"tag":201,"props":3469,"children":3470},{"class":203,"line":756},[3471],{"type":48,"tag":201,"props":3472,"children":3473},{"emptyLinePlaceholder":43},[3474],{"type":62,"value":262},{"type":48,"tag":201,"props":3476,"children":3477},{"class":203,"line":765},[3478],{"type":48,"tag":201,"props":3479,"children":3480},{},[3481],{"type":62,"value":3208},{"type":48,"tag":201,"props":3483,"children":3484},{"class":203,"line":819},[3485],{"type":48,"tag":201,"props":3486,"children":3487},{},[3488],{"type":62,"value":3216},{"type":48,"tag":201,"props":3490,"children":3491},{"class":203,"line":827},[3492],{"type":48,"tag":201,"props":3493,"children":3494},{},[3495],{"type":62,"value":3496},"        features = setOf(\n",{"type":48,"tag":201,"props":3498,"children":3499},{"class":203,"line":836},[3500],{"type":48,"tag":201,"props":3501,"children":3502},{},[3503],{"type":62,"value":3504},"            InstrumentationFeature.DATABASE,\n",{"type":48,"tag":201,"props":3506,"children":3507},{"class":203,"line":889},[3508],{"type":48,"tag":201,"props":3509,"children":3510},{},[3511],{"type":62,"value":3512},"            InstrumentationFeature.FILE_IO,\n",{"type":48,"tag":201,"props":3514,"children":3515},{"class":203,"line":31},[3516],{"type":48,"tag":201,"props":3517,"children":3518},{},[3519],{"type":62,"value":3520},"            InstrumentationFeature.OKHTTP,\n",{"type":48,"tag":201,"props":3522,"children":3523},{"class":203,"line":905},[3524],{"type":48,"tag":201,"props":3525,"children":3526},{},[3527],{"type":62,"value":3528},"            InstrumentationFeature.COMPOSE,\n",{"type":48,"tag":201,"props":3530,"children":3531},{"class":203,"line":958},[3532],{"type":48,"tag":201,"props":3533,"children":3534},{},[3535],{"type":62,"value":3536},"        )\n",{"type":48,"tag":201,"props":3538,"children":3539},{"class":203,"line":966},[3540],{"type":48,"tag":201,"props":3541,"children":3542},{},[3543],{"type":62,"value":3240},{"type":48,"tag":201,"props":3545,"children":3546},{"class":203,"line":975},[3547],{"type":48,"tag":201,"props":3548,"children":3549},{"emptyLinePlaceholder":43},[3550],{"type":62,"value":262},{"type":48,"tag":201,"props":3552,"children":3553},{"class":203,"line":1028},[3554],{"type":48,"tag":201,"props":3555,"children":3556},{},[3557],{"type":62,"value":3263},{"type":48,"tag":201,"props":3559,"children":3560},{"class":203,"line":1036},[3561],{"type":48,"tag":201,"props":3562,"children":3563},{},[3564],{"type":62,"value":3271},{"type":48,"tag":201,"props":3566,"children":3567},{"class":203,"line":1045},[3568],{"type":48,"tag":201,"props":3569,"children":3570},{},[3571],{"type":62,"value":2569},{"type":48,"tag":53,"props":3573,"children":3574},{},[3575],{"type":48,"tag":141,"props":3576,"children":3577},{},[3578],{"type":62,"value":3579},"Step 3 — Initialize Sentry in your Application class",{"type":48,"tag":53,"props":3581,"children":3582},{},[3583],{"type":62,"value":3584},"If you don't have an Application subclass, create one:",{"type":48,"tag":190,"props":3586,"children":3588},{"className":2539,"code":3587,"language":2541,"meta":195,"style":195},"\u002F\u002F MyApplication.kt\nimport android.app.Application\nimport io.sentry.SentryLevel\nimport io.sentry.android.core.SentryAndroid\nimport io.sentry.android.replay.SentryReplayOptions\n\nclass MyApplication : Application() {\n    override fun onCreate() {\n        super.onCreate()\n\n        SentryAndroid.init(this) { options ->\n            options.dsn = \"YOUR_SENTRY_DSN\"\n\n            \u002F\u002F Tracing — lower to 0.1–0.2 in high-traffic production\n            options.tracesSampleRate = 1.0\n\n            \u002F\u002F Profiling — use continuous UI profiling (recommended, SDK ≥ 8.7.0)\n            options.profileSessionSampleRate = 1.0\n\n            \u002F\u002F Session Replay (API 26+ only; silent no-op below API 26)\n            options.sessionReplay.sessionSampleRate = 0.1    \u002F\u002F 10% of all sessions\n            options.sessionReplay.onErrorSampleRate = 1.0    \u002F\u002F 100% on error\n\n            \u002F\u002F Structured logging\n            options.logs.isEnabled = true\n\n            \u002F\u002F Environment\n            options.environment = BuildConfig.BUILD_TYPE\n        }\n    }\n}\n",[3589],{"type":48,"tag":113,"props":3590,"children":3591},{"__ignoreMap":195},[3592,3600,3608,3616,3624,3632,3639,3647,3655,3663,3670,3678,3686,3693,3701,3709,3716,3724,3732,3739,3747,3755,3763,3770,3778,3786,3793,3801,3809,3817,3824],{"type":48,"tag":201,"props":3593,"children":3594},{"class":203,"line":204},[3595],{"type":48,"tag":201,"props":3596,"children":3597},{},[3598],{"type":62,"value":3599},"\u002F\u002F MyApplication.kt\n",{"type":48,"tag":201,"props":3601,"children":3602},{"class":203,"line":214},[3603],{"type":48,"tag":201,"props":3604,"children":3605},{},[3606],{"type":62,"value":3607},"import android.app.Application\n",{"type":48,"tag":201,"props":3609,"children":3610},{"class":203,"line":256},[3611],{"type":48,"tag":201,"props":3612,"children":3613},{},[3614],{"type":62,"value":3615},"import io.sentry.SentryLevel\n",{"type":48,"tag":201,"props":3617,"children":3618},{"class":203,"line":265},[3619],{"type":48,"tag":201,"props":3620,"children":3621},{},[3622],{"type":62,"value":3623},"import io.sentry.android.core.SentryAndroid\n",{"type":48,"tag":201,"props":3625,"children":3626},{"class":203,"line":274},[3627],{"type":48,"tag":201,"props":3628,"children":3629},{},[3630],{"type":62,"value":3631},"import io.sentry.android.replay.SentryReplayOptions\n",{"type":48,"tag":201,"props":3633,"children":3634},{"class":203,"line":346},[3635],{"type":48,"tag":201,"props":3636,"children":3637},{"emptyLinePlaceholder":43},[3638],{"type":62,"value":262},{"type":48,"tag":201,"props":3640,"children":3641},{"class":203,"line":401},[3642],{"type":48,"tag":201,"props":3643,"children":3644},{},[3645],{"type":62,"value":3646},"class MyApplication : Application() {\n",{"type":48,"tag":201,"props":3648,"children":3649},{"class":203,"line":409},[3650],{"type":48,"tag":201,"props":3651,"children":3652},{},[3653],{"type":62,"value":3654},"    override fun onCreate() {\n",{"type":48,"tag":201,"props":3656,"children":3657},{"class":203,"line":418},[3658],{"type":48,"tag":201,"props":3659,"children":3660},{},[3661],{"type":62,"value":3662},"        super.onCreate()\n",{"type":48,"tag":201,"props":3664,"children":3665},{"class":203,"line":443},[3666],{"type":48,"tag":201,"props":3667,"children":3668},{"emptyLinePlaceholder":43},[3669],{"type":62,"value":262},{"type":48,"tag":201,"props":3671,"children":3672},{"class":203,"line":451},[3673],{"type":48,"tag":201,"props":3674,"children":3675},{},[3676],{"type":62,"value":3677},"        SentryAndroid.init(this) { options ->\n",{"type":48,"tag":201,"props":3679,"children":3680},{"class":203,"line":460},[3681],{"type":48,"tag":201,"props":3682,"children":3683},{},[3684],{"type":62,"value":3685},"            options.dsn = \"YOUR_SENTRY_DSN\"\n",{"type":48,"tag":201,"props":3687,"children":3688},{"class":203,"line":481},[3689],{"type":48,"tag":201,"props":3690,"children":3691},{"emptyLinePlaceholder":43},[3692],{"type":62,"value":262},{"type":48,"tag":201,"props":3694,"children":3695},{"class":203,"line":489},[3696],{"type":48,"tag":201,"props":3697,"children":3698},{},[3699],{"type":62,"value":3700},"            \u002F\u002F Tracing — lower to 0.1–0.2 in high-traffic production\n",{"type":48,"tag":201,"props":3702,"children":3703},{"class":203,"line":498},[3704],{"type":48,"tag":201,"props":3705,"children":3706},{},[3707],{"type":62,"value":3708},"            options.tracesSampleRate = 1.0\n",{"type":48,"tag":201,"props":3710,"children":3711},{"class":203,"line":548},[3712],{"type":48,"tag":201,"props":3713,"children":3714},{"emptyLinePlaceholder":43},[3715],{"type":62,"value":262},{"type":48,"tag":201,"props":3717,"children":3718},{"class":203,"line":556},[3719],{"type":48,"tag":201,"props":3720,"children":3721},{},[3722],{"type":62,"value":3723},"            \u002F\u002F Profiling — use continuous UI profiling (recommended, SDK ≥ 8.7.0)\n",{"type":48,"tag":201,"props":3725,"children":3726},{"class":203,"line":565},[3727],{"type":48,"tag":201,"props":3728,"children":3729},{},[3730],{"type":62,"value":3731},"            options.profileSessionSampleRate = 1.0\n",{"type":48,"tag":201,"props":3733,"children":3734},{"class":203,"line":628},[3735],{"type":48,"tag":201,"props":3736,"children":3737},{"emptyLinePlaceholder":43},[3738],{"type":62,"value":262},{"type":48,"tag":201,"props":3740,"children":3741},{"class":203,"line":636},[3742],{"type":48,"tag":201,"props":3743,"children":3744},{},[3745],{"type":62,"value":3746},"            \u002F\u002F Session Replay (API 26+ only; silent no-op below API 26)\n",{"type":48,"tag":201,"props":3748,"children":3749},{"class":203,"line":645},[3750],{"type":48,"tag":201,"props":3751,"children":3752},{},[3753],{"type":62,"value":3754},"            options.sessionReplay.sessionSampleRate = 0.1    \u002F\u002F 10% of all sessions\n",{"type":48,"tag":201,"props":3756,"children":3757},{"class":203,"line":699},[3758],{"type":48,"tag":201,"props":3759,"children":3760},{},[3761],{"type":62,"value":3762},"            options.sessionReplay.onErrorSampleRate = 1.0    \u002F\u002F 100% on error\n",{"type":48,"tag":201,"props":3764,"children":3765},{"class":203,"line":748},[3766],{"type":48,"tag":201,"props":3767,"children":3768},{"emptyLinePlaceholder":43},[3769],{"type":62,"value":262},{"type":48,"tag":201,"props":3771,"children":3772},{"class":203,"line":756},[3773],{"type":48,"tag":201,"props":3774,"children":3775},{},[3776],{"type":62,"value":3777},"            \u002F\u002F Structured logging\n",{"type":48,"tag":201,"props":3779,"children":3780},{"class":203,"line":765},[3781],{"type":48,"tag":201,"props":3782,"children":3783},{},[3784],{"type":62,"value":3785},"            options.logs.isEnabled = true\n",{"type":48,"tag":201,"props":3787,"children":3788},{"class":203,"line":819},[3789],{"type":48,"tag":201,"props":3790,"children":3791},{"emptyLinePlaceholder":43},[3792],{"type":62,"value":262},{"type":48,"tag":201,"props":3794,"children":3795},{"class":203,"line":827},[3796],{"type":48,"tag":201,"props":3797,"children":3798},{},[3799],{"type":62,"value":3800},"            \u002F\u002F Environment\n",{"type":48,"tag":201,"props":3802,"children":3803},{"class":203,"line":836},[3804],{"type":48,"tag":201,"props":3805,"children":3806},{},[3807],{"type":62,"value":3808},"            options.environment = BuildConfig.BUILD_TYPE\n",{"type":48,"tag":201,"props":3810,"children":3811},{"class":203,"line":889},[3812],{"type":48,"tag":201,"props":3813,"children":3814},{},[3815],{"type":62,"value":3816},"        }\n",{"type":48,"tag":201,"props":3818,"children":3819},{"class":203,"line":31},[3820],{"type":48,"tag":201,"props":3821,"children":3822},{},[3823],{"type":62,"value":3240},{"type":48,"tag":201,"props":3825,"children":3826},{"class":203,"line":905},[3827],{"type":48,"tag":201,"props":3828,"children":3829},{},[3830],{"type":62,"value":2569},{"type":48,"tag":53,"props":3832,"children":3833},{},[3834],{"type":62,"value":3835},"Java equivalent:",{"type":48,"tag":190,"props":3837,"children":3841},{"className":3838,"code":3839,"language":3840,"meta":195,"style":195},"language-java shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u002F\u002F MyApplication.java\nimport android.app.Application;\nimport io.sentry.android.core.SentryAndroid;\n\npublic class MyApplication extends Application {\n    @Override\n    public void onCreate() {\n        super.onCreate();\n\n        SentryAndroid.init(this, options -> {\n            options.setDsn(\"YOUR_SENTRY_DSN\");\n            options.setTracesSampleRate(1.0);\n            options.setProfileSessionSampleRate(1.0);\n            options.getSessionReplay().setSessionSampleRate(0.1);\n            options.getSessionReplay().setOnErrorSampleRate(1.0);\n            options.getLogs().setEnabled(true);\n            options.setEnvironment(BuildConfig.BUILD_TYPE);\n        });\n    }\n}\n","java",[3842],{"type":48,"tag":113,"props":3843,"children":3844},{"__ignoreMap":195},[3845,3853,3861,3869,3876,3884,3892,3900,3908,3915,3923,3931,3939,3947,3955,3963,3971,3979,3987,3994],{"type":48,"tag":201,"props":3846,"children":3847},{"class":203,"line":204},[3848],{"type":48,"tag":201,"props":3849,"children":3850},{},[3851],{"type":62,"value":3852},"\u002F\u002F MyApplication.java\n",{"type":48,"tag":201,"props":3854,"children":3855},{"class":203,"line":214},[3856],{"type":48,"tag":201,"props":3857,"children":3858},{},[3859],{"type":62,"value":3860},"import android.app.Application;\n",{"type":48,"tag":201,"props":3862,"children":3863},{"class":203,"line":256},[3864],{"type":48,"tag":201,"props":3865,"children":3866},{},[3867],{"type":62,"value":3868},"import io.sentry.android.core.SentryAndroid;\n",{"type":48,"tag":201,"props":3870,"children":3871},{"class":203,"line":265},[3872],{"type":48,"tag":201,"props":3873,"children":3874},{"emptyLinePlaceholder":43},[3875],{"type":62,"value":262},{"type":48,"tag":201,"props":3877,"children":3878},{"class":203,"line":274},[3879],{"type":48,"tag":201,"props":3880,"children":3881},{},[3882],{"type":62,"value":3883},"public class MyApplication extends Application {\n",{"type":48,"tag":201,"props":3885,"children":3886},{"class":203,"line":346},[3887],{"type":48,"tag":201,"props":3888,"children":3889},{},[3890],{"type":62,"value":3891},"    @Override\n",{"type":48,"tag":201,"props":3893,"children":3894},{"class":203,"line":401},[3895],{"type":48,"tag":201,"props":3896,"children":3897},{},[3898],{"type":62,"value":3899},"    public void onCreate() {\n",{"type":48,"tag":201,"props":3901,"children":3902},{"class":203,"line":409},[3903],{"type":48,"tag":201,"props":3904,"children":3905},{},[3906],{"type":62,"value":3907},"        super.onCreate();\n",{"type":48,"tag":201,"props":3909,"children":3910},{"class":203,"line":418},[3911],{"type":48,"tag":201,"props":3912,"children":3913},{"emptyLinePlaceholder":43},[3914],{"type":62,"value":262},{"type":48,"tag":201,"props":3916,"children":3917},{"class":203,"line":443},[3918],{"type":48,"tag":201,"props":3919,"children":3920},{},[3921],{"type":62,"value":3922},"        SentryAndroid.init(this, options -> {\n",{"type":48,"tag":201,"props":3924,"children":3925},{"class":203,"line":451},[3926],{"type":48,"tag":201,"props":3927,"children":3928},{},[3929],{"type":62,"value":3930},"            options.setDsn(\"YOUR_SENTRY_DSN\");\n",{"type":48,"tag":201,"props":3932,"children":3933},{"class":203,"line":460},[3934],{"type":48,"tag":201,"props":3935,"children":3936},{},[3937],{"type":62,"value":3938},"            options.setTracesSampleRate(1.0);\n",{"type":48,"tag":201,"props":3940,"children":3941},{"class":203,"line":481},[3942],{"type":48,"tag":201,"props":3943,"children":3944},{},[3945],{"type":62,"value":3946},"            options.setProfileSessionSampleRate(1.0);\n",{"type":48,"tag":201,"props":3948,"children":3949},{"class":203,"line":489},[3950],{"type":48,"tag":201,"props":3951,"children":3952},{},[3953],{"type":62,"value":3954},"            options.getSessionReplay().setSessionSampleRate(0.1);\n",{"type":48,"tag":201,"props":3956,"children":3957},{"class":203,"line":498},[3958],{"type":48,"tag":201,"props":3959,"children":3960},{},[3961],{"type":62,"value":3962},"            options.getSessionReplay().setOnErrorSampleRate(1.0);\n",{"type":48,"tag":201,"props":3964,"children":3965},{"class":203,"line":548},[3966],{"type":48,"tag":201,"props":3967,"children":3968},{},[3969],{"type":62,"value":3970},"            options.getLogs().setEnabled(true);\n",{"type":48,"tag":201,"props":3972,"children":3973},{"class":203,"line":556},[3974],{"type":48,"tag":201,"props":3975,"children":3976},{},[3977],{"type":62,"value":3978},"            options.setEnvironment(BuildConfig.BUILD_TYPE);\n",{"type":48,"tag":201,"props":3980,"children":3981},{"class":203,"line":565},[3982],{"type":48,"tag":201,"props":3983,"children":3984},{},[3985],{"type":62,"value":3986},"        });\n",{"type":48,"tag":201,"props":3988,"children":3989},{"class":203,"line":628},[3990],{"type":48,"tag":201,"props":3991,"children":3992},{},[3993],{"type":62,"value":3240},{"type":48,"tag":201,"props":3995,"children":3996},{"class":203,"line":636},[3997],{"type":48,"tag":201,"props":3998,"children":3999},{},[4000],{"type":62,"value":2569},{"type":48,"tag":53,"props":4002,"children":4003},{},[4004],{"type":48,"tag":141,"props":4005,"children":4006},{},[4007,4009],{"type":62,"value":4008},"Step 4 — Register Application in ",{"type":48,"tag":113,"props":4010,"children":4012},{"className":4011},[],[4013],{"type":62,"value":4014},"AndroidManifest.xml",{"type":48,"tag":190,"props":4016,"children":4020},{"className":4017,"code":4018,"language":4019,"meta":195,"style":195},"language-xml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u003Capplication\n    android:name=\".MyApplication\"\n    ... >\n","xml",[4021],{"type":48,"tag":113,"props":4022,"children":4023},{"__ignoreMap":195},[4024,4032,4040],{"type":48,"tag":201,"props":4025,"children":4026},{"class":203,"line":204},[4027],{"type":48,"tag":201,"props":4028,"children":4029},{},[4030],{"type":62,"value":4031},"\u003Capplication\n",{"type":48,"tag":201,"props":4033,"children":4034},{"class":203,"line":214},[4035],{"type":48,"tag":201,"props":4036,"children":4037},{},[4038],{"type":62,"value":4039},"    android:name=\".MyApplication\"\n",{"type":48,"tag":201,"props":4041,"children":4042},{"class":203,"line":256},[4043],{"type":48,"tag":201,"props":4044,"children":4045},{},[4046],{"type":62,"value":4047},"    ... >\n",{"type":48,"tag":175,"props":4049,"children":4050},{},[],{"type":48,"tag":2280,"props":4052,"children":4054},{"id":4053},"path-b-manual-setup-no-gradle-plugin",[4055],{"type":62,"value":4056},"Path B: Manual Setup (No Gradle Plugin)",{"type":48,"tag":53,"props":4058,"children":4059},{},[4060],{"type":62,"value":4061},"Use this if you can't use the Gradle plugin (e.g., non-standard build setups).",{"type":48,"tag":53,"props":4063,"children":4064},{},[4065],{"type":48,"tag":141,"props":4066,"children":4067},{},[4068,4070],{"type":62,"value":4069},"Step 1 — Add dependency in ",{"type":48,"tag":113,"props":4071,"children":4073},{"className":4072},[],[4074],{"type":62,"value":2924},{"type":48,"tag":190,"props":4076,"children":4078},{"className":2539,"code":4077,"language":2541,"meta":195,"style":195},"dependencies {\n    implementation(platform(\"io.sentry:sentry-bom:8.33.0\"))\n    implementation(\"io.sentry:sentry-android\")\n}\n",[4079],{"type":48,"tag":113,"props":4080,"children":4081},{"__ignoreMap":195},[4082,4089,4096,4103],{"type":48,"tag":201,"props":4083,"children":4084},{"class":203,"line":204},[4085],{"type":48,"tag":201,"props":4086,"children":4087},{},[4088],{"type":62,"value":2633},{"type":48,"tag":201,"props":4090,"children":4091},{"class":203,"line":214},[4092],{"type":48,"tag":201,"props":4093,"children":4094},{},[4095],{"type":62,"value":3346},{"type":48,"tag":201,"props":4097,"children":4098},{"class":203,"line":256},[4099],{"type":48,"tag":201,"props":4100,"children":4101},{},[4102],{"type":62,"value":3354},{"type":48,"tag":201,"props":4104,"children":4105},{"class":203,"line":265},[4106],{"type":48,"tag":201,"props":4107,"children":4108},{},[4109],{"type":62,"value":2569},{"type":48,"tag":53,"props":4111,"children":4112},{},[4113,4118],{"type":48,"tag":141,"props":4114,"children":4115},{},[4116],{"type":62,"value":4117},"Step 2 — Initialize in Application class",{"type":62,"value":4119}," (same as Path A, Step 3)",{"type":48,"tag":53,"props":4121,"children":4122},{},[4123],{"type":48,"tag":141,"props":4124,"children":4125},{},[4126],{"type":62,"value":4127},"Step 3 — Configure ProGuard\u002FR8 manually",{"type":48,"tag":53,"props":4129,"children":4130},{},[4131,4133,4139],{"type":62,"value":4132},"The Sentry SDK ships a ProGuard rules file automatically. For manual mapping upload, install ",{"type":48,"tag":113,"props":4134,"children":4136},{"className":4135},[],[4137],{"type":62,"value":4138},"sentry-cli",{"type":62,"value":4140}," and add to your CI:",{"type":48,"tag":190,"props":4142,"children":4144},{"className":192,"code":4143,"language":194,"meta":195,"style":195},"sentry-cli releases files \"my-app@1.0.0+42\" upload-proguard \\\n  --org YOUR_ORG --project YOUR_PROJECT \\\n  app\u002Fbuild\u002Foutputs\u002Fmapping\u002Frelease\u002Fmapping.txt\n",[4145],{"type":48,"tag":113,"props":4146,"children":4147},{"__ignoreMap":195},[4148,4188,4215],{"type":48,"tag":201,"props":4149,"children":4150},{"class":203,"line":204},[4151,4155,4160,4165,4169,4174,4178,4183],{"type":48,"tag":201,"props":4152,"children":4153},{"style":218},[4154],{"type":62,"value":4138},{"type":48,"tag":201,"props":4156,"children":4157},{"style":224},[4158],{"type":62,"value":4159}," releases",{"type":48,"tag":201,"props":4161,"children":4162},{"style":224},[4163],{"type":62,"value":4164}," files",{"type":48,"tag":201,"props":4166,"children":4167},{"style":245},[4168],{"type":62,"value":666},{"type":48,"tag":201,"props":4170,"children":4171},{"style":224},[4172],{"type":62,"value":4173},"my-app@1.0.0+42",{"type":48,"tag":201,"props":4175,"children":4176},{"style":245},[4177],{"type":62,"value":676},{"type":48,"tag":201,"props":4179,"children":4180},{"style":224},[4181],{"type":62,"value":4182}," upload-proguard",{"type":48,"tag":201,"props":4184,"children":4185},{"style":307},[4186],{"type":62,"value":4187}," \\\n",{"type":48,"tag":201,"props":4189,"children":4190},{"class":203,"line":214},[4191,4196,4201,4206,4211],{"type":48,"tag":201,"props":4192,"children":4193},{"style":224},[4194],{"type":62,"value":4195},"  --org",{"type":48,"tag":201,"props":4197,"children":4198},{"style":224},[4199],{"type":62,"value":4200}," YOUR_ORG",{"type":48,"tag":201,"props":4202,"children":4203},{"style":224},[4204],{"type":62,"value":4205}," --project",{"type":48,"tag":201,"props":4207,"children":4208},{"style":224},[4209],{"type":62,"value":4210}," YOUR_PROJECT",{"type":48,"tag":201,"props":4212,"children":4213},{"style":307},[4214],{"type":62,"value":4187},{"type":48,"tag":201,"props":4216,"children":4217},{"class":203,"line":256},[4218],{"type":48,"tag":201,"props":4219,"children":4220},{"style":224},[4221],{"type":62,"value":4222},"  app\u002Fbuild\u002Foutputs\u002Fmapping\u002Frelease\u002Fmapping.txt\n",{"type":48,"tag":175,"props":4224,"children":4225},{},[],{"type":48,"tag":2123,"props":4227,"children":4229},{"id":4228},"quick-reference-full-featured-sentryandroidinit",[4230,4232],{"type":62,"value":4231},"Quick Reference: Full-Featured ",{"type":48,"tag":113,"props":4233,"children":4235},{"className":4234},[],[4236],{"type":62,"value":1844},{"type":48,"tag":190,"props":4238,"children":4240},{"className":2539,"code":4239,"language":2541,"meta":195,"style":195},"SentryAndroid.init(this) { options ->\n    options.dsn = \"YOUR_SENTRY_DSN\"\n\n    \u002F\u002F Environment and release\n    options.environment = BuildConfig.BUILD_TYPE     \u002F\u002F \"debug\", \"release\", etc.\n    options.release = \"${BuildConfig.APPLICATION_ID}@${BuildConfig.VERSION_NAME}+${BuildConfig.VERSION_CODE}\"\n\n    \u002F\u002F Tracing — sample 100% in dev, lower to 10–20% in production\n    options.tracesSampleRate = 1.0\n\n    \u002F\u002F Continuous UI profiling (recommended over transaction-based)\n    options.profileSessionSampleRate = 1.0\n\n    \u002F\u002F Session Replay (API 26+; silent no-op on API 21–25)\n    options.sessionReplay.sessionSampleRate = 0.1\n    options.sessionReplay.onErrorSampleRate = 1.0\n    options.sessionReplay.maskAllText = true         \u002F\u002F mask text for privacy\n    options.sessionReplay.maskAllImages = true       \u002F\u002F mask images for privacy\n\n    \u002F\u002F Structured logging\n    options.logs.isEnabled = true\n\n    \u002F\u002F Error enrichment\n    options.isAttachScreenshot = true                \u002F\u002F capture screenshot on error\n    options.isAttachViewHierarchy = true             \u002F\u002F attach view hierarchy JSON\n\n    \u002F\u002F ANR detection (5s default; watchdog + ApplicationExitInfo API 30+)\n    options.isAnrEnabled = true\n\n    \u002F\u002F NDK native crash handling (enabled by default)\n    options.isEnableNdk = true\n\n    \u002F\u002F Send PII: IP address, user data\n    options.sendDefaultPii = true\n\n    \u002F\u002F Trace propagation (backend distributed tracing)\n    options.tracePropagationTargets = listOf(\"api.yourapp.com\", \".*\\\\.yourapp\\\\.com\")\n\n    \u002F\u002F Verbose logging — disable in production\n    options.isDebug = BuildConfig.DEBUG\n}\n",[4241],{"type":48,"tag":113,"props":4242,"children":4243},{"__ignoreMap":195},[4244,4252,4260,4267,4275,4283,4291,4298,4306,4314,4321,4329,4337,4344,4352,4360,4368,4376,4384,4391,4399,4407,4414,4422,4430,4438,4445,4453,4461,4468,4476,4484,4491,4499,4507,4514,4522,4530,4537,4545,4553],{"type":48,"tag":201,"props":4245,"children":4246},{"class":203,"line":204},[4247],{"type":48,"tag":201,"props":4248,"children":4249},{},[4250],{"type":62,"value":4251},"SentryAndroid.init(this) { options ->\n",{"type":48,"tag":201,"props":4253,"children":4254},{"class":203,"line":214},[4255],{"type":48,"tag":201,"props":4256,"children":4257},{},[4258],{"type":62,"value":4259},"    options.dsn = \"YOUR_SENTRY_DSN\"\n",{"type":48,"tag":201,"props":4261,"children":4262},{"class":203,"line":256},[4263],{"type":48,"tag":201,"props":4264,"children":4265},{"emptyLinePlaceholder":43},[4266],{"type":62,"value":262},{"type":48,"tag":201,"props":4268,"children":4269},{"class":203,"line":265},[4270],{"type":48,"tag":201,"props":4271,"children":4272},{},[4273],{"type":62,"value":4274},"    \u002F\u002F Environment and release\n",{"type":48,"tag":201,"props":4276,"children":4277},{"class":203,"line":274},[4278],{"type":48,"tag":201,"props":4279,"children":4280},{},[4281],{"type":62,"value":4282},"    options.environment = BuildConfig.BUILD_TYPE     \u002F\u002F \"debug\", \"release\", etc.\n",{"type":48,"tag":201,"props":4284,"children":4285},{"class":203,"line":346},[4286],{"type":48,"tag":201,"props":4287,"children":4288},{},[4289],{"type":62,"value":4290},"    options.release = \"${BuildConfig.APPLICATION_ID}@${BuildConfig.VERSION_NAME}+${BuildConfig.VERSION_CODE}\"\n",{"type":48,"tag":201,"props":4292,"children":4293},{"class":203,"line":401},[4294],{"type":48,"tag":201,"props":4295,"children":4296},{"emptyLinePlaceholder":43},[4297],{"type":62,"value":262},{"type":48,"tag":201,"props":4299,"children":4300},{"class":203,"line":409},[4301],{"type":48,"tag":201,"props":4302,"children":4303},{},[4304],{"type":62,"value":4305},"    \u002F\u002F Tracing — sample 100% in dev, lower to 10–20% in production\n",{"type":48,"tag":201,"props":4307,"children":4308},{"class":203,"line":418},[4309],{"type":48,"tag":201,"props":4310,"children":4311},{},[4312],{"type":62,"value":4313},"    options.tracesSampleRate = 1.0\n",{"type":48,"tag":201,"props":4315,"children":4316},{"class":203,"line":443},[4317],{"type":48,"tag":201,"props":4318,"children":4319},{"emptyLinePlaceholder":43},[4320],{"type":62,"value":262},{"type":48,"tag":201,"props":4322,"children":4323},{"class":203,"line":451},[4324],{"type":48,"tag":201,"props":4325,"children":4326},{},[4327],{"type":62,"value":4328},"    \u002F\u002F Continuous UI profiling (recommended over transaction-based)\n",{"type":48,"tag":201,"props":4330,"children":4331},{"class":203,"line":460},[4332],{"type":48,"tag":201,"props":4333,"children":4334},{},[4335],{"type":62,"value":4336},"    options.profileSessionSampleRate = 1.0\n",{"type":48,"tag":201,"props":4338,"children":4339},{"class":203,"line":481},[4340],{"type":48,"tag":201,"props":4341,"children":4342},{"emptyLinePlaceholder":43},[4343],{"type":62,"value":262},{"type":48,"tag":201,"props":4345,"children":4346},{"class":203,"line":489},[4347],{"type":48,"tag":201,"props":4348,"children":4349},{},[4350],{"type":62,"value":4351},"    \u002F\u002F Session Replay (API 26+; silent no-op on API 21–25)\n",{"type":48,"tag":201,"props":4353,"children":4354},{"class":203,"line":498},[4355],{"type":48,"tag":201,"props":4356,"children":4357},{},[4358],{"type":62,"value":4359},"    options.sessionReplay.sessionSampleRate = 0.1\n",{"type":48,"tag":201,"props":4361,"children":4362},{"class":203,"line":548},[4363],{"type":48,"tag":201,"props":4364,"children":4365},{},[4366],{"type":62,"value":4367},"    options.sessionReplay.onErrorSampleRate = 1.0\n",{"type":48,"tag":201,"props":4369,"children":4370},{"class":203,"line":556},[4371],{"type":48,"tag":201,"props":4372,"children":4373},{},[4374],{"type":62,"value":4375},"    options.sessionReplay.maskAllText = true         \u002F\u002F mask text for privacy\n",{"type":48,"tag":201,"props":4377,"children":4378},{"class":203,"line":565},[4379],{"type":48,"tag":201,"props":4380,"children":4381},{},[4382],{"type":62,"value":4383},"    options.sessionReplay.maskAllImages = true       \u002F\u002F mask images for privacy\n",{"type":48,"tag":201,"props":4385,"children":4386},{"class":203,"line":628},[4387],{"type":48,"tag":201,"props":4388,"children":4389},{"emptyLinePlaceholder":43},[4390],{"type":62,"value":262},{"type":48,"tag":201,"props":4392,"children":4393},{"class":203,"line":636},[4394],{"type":48,"tag":201,"props":4395,"children":4396},{},[4397],{"type":62,"value":4398},"    \u002F\u002F Structured logging\n",{"type":48,"tag":201,"props":4400,"children":4401},{"class":203,"line":645},[4402],{"type":48,"tag":201,"props":4403,"children":4404},{},[4405],{"type":62,"value":4406},"    options.logs.isEnabled = true\n",{"type":48,"tag":201,"props":4408,"children":4409},{"class":203,"line":699},[4410],{"type":48,"tag":201,"props":4411,"children":4412},{"emptyLinePlaceholder":43},[4413],{"type":62,"value":262},{"type":48,"tag":201,"props":4415,"children":4416},{"class":203,"line":748},[4417],{"type":48,"tag":201,"props":4418,"children":4419},{},[4420],{"type":62,"value":4421},"    \u002F\u002F Error enrichment\n",{"type":48,"tag":201,"props":4423,"children":4424},{"class":203,"line":756},[4425],{"type":48,"tag":201,"props":4426,"children":4427},{},[4428],{"type":62,"value":4429},"    options.isAttachScreenshot = true                \u002F\u002F capture screenshot on error\n",{"type":48,"tag":201,"props":4431,"children":4432},{"class":203,"line":765},[4433],{"type":48,"tag":201,"props":4434,"children":4435},{},[4436],{"type":62,"value":4437},"    options.isAttachViewHierarchy = true             \u002F\u002F attach view hierarchy JSON\n",{"type":48,"tag":201,"props":4439,"children":4440},{"class":203,"line":819},[4441],{"type":48,"tag":201,"props":4442,"children":4443},{"emptyLinePlaceholder":43},[4444],{"type":62,"value":262},{"type":48,"tag":201,"props":4446,"children":4447},{"class":203,"line":827},[4448],{"type":48,"tag":201,"props":4449,"children":4450},{},[4451],{"type":62,"value":4452},"    \u002F\u002F ANR detection (5s default; watchdog + ApplicationExitInfo API 30+)\n",{"type":48,"tag":201,"props":4454,"children":4455},{"class":203,"line":836},[4456],{"type":48,"tag":201,"props":4457,"children":4458},{},[4459],{"type":62,"value":4460},"    options.isAnrEnabled = true\n",{"type":48,"tag":201,"props":4462,"children":4463},{"class":203,"line":889},[4464],{"type":48,"tag":201,"props":4465,"children":4466},{"emptyLinePlaceholder":43},[4467],{"type":62,"value":262},{"type":48,"tag":201,"props":4469,"children":4470},{"class":203,"line":31},[4471],{"type":48,"tag":201,"props":4472,"children":4473},{},[4474],{"type":62,"value":4475},"    \u002F\u002F NDK native crash handling (enabled by default)\n",{"type":48,"tag":201,"props":4477,"children":4478},{"class":203,"line":905},[4479],{"type":48,"tag":201,"props":4480,"children":4481},{},[4482],{"type":62,"value":4483},"    options.isEnableNdk = true\n",{"type":48,"tag":201,"props":4485,"children":4486},{"class":203,"line":958},[4487],{"type":48,"tag":201,"props":4488,"children":4489},{"emptyLinePlaceholder":43},[4490],{"type":62,"value":262},{"type":48,"tag":201,"props":4492,"children":4493},{"class":203,"line":966},[4494],{"type":48,"tag":201,"props":4495,"children":4496},{},[4497],{"type":62,"value":4498},"    \u002F\u002F Send PII: IP address, user data\n",{"type":48,"tag":201,"props":4500,"children":4501},{"class":203,"line":975},[4502],{"type":48,"tag":201,"props":4503,"children":4504},{},[4505],{"type":62,"value":4506},"    options.sendDefaultPii = true\n",{"type":48,"tag":201,"props":4508,"children":4509},{"class":203,"line":1028},[4510],{"type":48,"tag":201,"props":4511,"children":4512},{"emptyLinePlaceholder":43},[4513],{"type":62,"value":262},{"type":48,"tag":201,"props":4515,"children":4516},{"class":203,"line":1036},[4517],{"type":48,"tag":201,"props":4518,"children":4519},{},[4520],{"type":62,"value":4521},"    \u002F\u002F Trace propagation (backend distributed tracing)\n",{"type":48,"tag":201,"props":4523,"children":4524},{"class":203,"line":1045},[4525],{"type":48,"tag":201,"props":4526,"children":4527},{},[4528],{"type":62,"value":4529},"    options.tracePropagationTargets = listOf(\"api.yourapp.com\", \".*\\\\.yourapp\\\\.com\")\n",{"type":48,"tag":201,"props":4531,"children":4532},{"class":203,"line":1098},[4533],{"type":48,"tag":201,"props":4534,"children":4535},{"emptyLinePlaceholder":43},[4536],{"type":62,"value":262},{"type":48,"tag":201,"props":4538,"children":4539},{"class":203,"line":1106},[4540],{"type":48,"tag":201,"props":4541,"children":4542},{},[4543],{"type":62,"value":4544},"    \u002F\u002F Verbose logging — disable in production\n",{"type":48,"tag":201,"props":4546,"children":4547},{"class":203,"line":1115},[4548],{"type":48,"tag":201,"props":4549,"children":4550},{},[4551],{"type":62,"value":4552},"    options.isDebug = BuildConfig.DEBUG\n",{"type":48,"tag":201,"props":4554,"children":4555},{"class":203,"line":1168},[4556],{"type":48,"tag":201,"props":4557,"children":4558},{},[4559],{"type":62,"value":2569},{"type":48,"tag":175,"props":4561,"children":4562},{},[],{"type":48,"tag":2123,"props":4564,"children":4566},{"id":4565},"for-each-agreed-feature",[4567],{"type":62,"value":4568},"For Each Agreed Feature",{"type":48,"tag":53,"props":4570,"children":4571},{},[4572],{"type":62,"value":4573},"Walk through features one at a time. Load the reference file for each, follow its steps, then verify before moving on:",{"type":48,"tag":1619,"props":4575,"children":4576},{},[4577,4597],{"type":48,"tag":1623,"props":4578,"children":4579},{},[4580],{"type":48,"tag":1627,"props":4581,"children":4582},{},[4583,4587,4592],{"type":48,"tag":1631,"props":4584,"children":4585},{},[4586],{"type":62,"value":2004},{"type":48,"tag":1631,"props":4588,"children":4589},{},[4590],{"type":62,"value":4591},"Reference",{"type":48,"tag":1631,"props":4593,"children":4594},{},[4595],{"type":62,"value":4596},"Load when...",{"type":48,"tag":1642,"props":4598,"children":4599},{},[4600,4621,4643,4664,4685,4706,4728,4750],{"type":48,"tag":1627,"props":4601,"children":4602},{},[4603,4607,4616],{"type":48,"tag":1649,"props":4604,"children":4605},{},[4606],{"type":62,"value":1905},{"type":48,"tag":1649,"props":4608,"children":4609},{},[4610],{"type":48,"tag":113,"props":4611,"children":4613},{"className":4612},[],[4614],{"type":62,"value":4615},"${SKILL_ROOT}\u002Freferences\u002Ferror-monitoring.md",{"type":48,"tag":1649,"props":4617,"children":4618},{},[4619],{"type":62,"value":4620},"Always (baseline)",{"type":48,"tag":1627,"props":4622,"children":4623},{},[4624,4629,4638],{"type":48,"tag":1649,"props":4625,"children":4626},{},[4627],{"type":62,"value":4628},"Tracing & Performance",{"type":48,"tag":1649,"props":4630,"children":4631},{},[4632],{"type":48,"tag":113,"props":4633,"children":4635},{"className":4634},[],[4636],{"type":62,"value":4637},"${SKILL_ROOT}\u002Freferences\u002Ftracing.md",{"type":48,"tag":1649,"props":4639,"children":4640},{},[4641],{"type":62,"value":4642},"Always for Android (Activity lifecycle, network)",{"type":48,"tag":1627,"props":4644,"children":4645},{},[4646,4650,4659],{"type":48,"tag":1649,"props":4647,"children":4648},{},[4649],{"type":62,"value":1950},{"type":48,"tag":1649,"props":4651,"children":4652},{},[4653],{"type":48,"tag":113,"props":4654,"children":4656},{"className":4655},[],[4657],{"type":62,"value":4658},"${SKILL_ROOT}\u002Freferences\u002Fprofiling.md",{"type":48,"tag":1649,"props":4660,"children":4661},{},[4662],{"type":62,"value":4663},"Performance-sensitive production apps",{"type":48,"tag":1627,"props":4665,"children":4666},{},[4667,4671,4680],{"type":48,"tag":1649,"props":4668,"children":4669},{},[4670],{"type":62,"value":1927},{"type":48,"tag":1649,"props":4672,"children":4673},{},[4674],{"type":48,"tag":113,"props":4675,"children":4677},{"className":4676},[],[4678],{"type":62,"value":4679},"${SKILL_ROOT}\u002Freferences\u002Fsession-replay.md",{"type":48,"tag":1649,"props":4681,"children":4682},{},[4683],{"type":62,"value":4684},"User-facing apps (API 26+)",{"type":48,"tag":1627,"props":4686,"children":4687},{},[4688,4692,4701],{"type":48,"tag":1649,"props":4689,"children":4690},{},[4691],{"type":62,"value":1961},{"type":48,"tag":1649,"props":4693,"children":4694},{},[4695],{"type":48,"tag":113,"props":4696,"children":4698},{"className":4697},[],[4699],{"type":62,"value":4700},"${SKILL_ROOT}\u002Freferences\u002Flogging.md",{"type":48,"tag":1649,"props":4702,"children":4703},{},[4704],{"type":62,"value":4705},"Structured logging \u002F log-to-trace correlation",{"type":48,"tag":1627,"props":4707,"children":4708},{},[4709,4714,4723],{"type":48,"tag":1649,"props":4710,"children":4711},{},[4712],{"type":62,"value":4713},"Metrics",{"type":48,"tag":1649,"props":4715,"children":4716},{},[4717],{"type":48,"tag":113,"props":4718,"children":4720},{"className":4719},[],[4721],{"type":62,"value":4722},"${SKILL_ROOT}\u002Freferences\u002Fmetrics.md",{"type":48,"tag":1649,"props":4724,"children":4725},{},[4726],{"type":62,"value":4727},"Custom metric tracking (SDK ≥ 8.30.0)",{"type":48,"tag":1627,"props":4729,"children":4730},{},[4731,4736,4745],{"type":48,"tag":1649,"props":4732,"children":4733},{},[4734],{"type":62,"value":4735},"Crons",{"type":48,"tag":1649,"props":4737,"children":4738},{},[4739],{"type":48,"tag":113,"props":4740,"children":4742},{"className":4741},[],[4743],{"type":62,"value":4744},"${SKILL_ROOT}\u002Freferences\u002Fcrons.md",{"type":48,"tag":1649,"props":4746,"children":4747},{},[4748],{"type":62,"value":4749},"Scheduled jobs, WorkManager check-ins",{"type":48,"tag":1627,"props":4751,"children":4752},{},[4753,4758,4767],{"type":48,"tag":1649,"props":4754,"children":4755},{},[4756],{"type":62,"value":4757},"Integration Reference",{"type":48,"tag":1649,"props":4759,"children":4760},{},[4761],{"type":48,"tag":113,"props":4762,"children":4764},{"className":4763},[],[4765],{"type":62,"value":4766},"${SKILL_ROOT}\u002Freferences\u002Fintegrations.md",{"type":48,"tag":1649,"props":4768,"children":4769},{},[4770],{"type":62,"value":4771},"Built-in, optional, and Gradle bytecode integrations",{"type":48,"tag":53,"props":4773,"children":4774},{},[4775,4777,4783],{"type":62,"value":4776},"For each feature: ",{"type":48,"tag":113,"props":4778,"children":4780},{"className":4779},[],[4781],{"type":62,"value":4782},"Read ${SKILL_ROOT}\u002Freferences\u002F\u003Cfeature>.md",{"type":62,"value":4784},", follow steps exactly, verify it works.",{"type":48,"tag":175,"props":4786,"children":4787},{},[],{"type":48,"tag":86,"props":4789,"children":4791},{"id":4790},"configuration-reference",[4792],{"type":62,"value":4793},"Configuration Reference",{"type":48,"tag":2123,"props":4795,"children":4797},{"id":4796},"core-sentryoptions-via-sentryandroidinit",[4798,4800,4806,4808,4814],{"type":62,"value":4799},"Core ",{"type":48,"tag":113,"props":4801,"children":4803},{"className":4802},[],[4804],{"type":62,"value":4805},"SentryOptions",{"type":62,"value":4807}," (via ",{"type":48,"tag":113,"props":4809,"children":4811},{"className":4810},[],[4812],{"type":62,"value":4813},"SentryAndroid.init",{"type":62,"value":2292},{"type":48,"tag":1619,"props":4816,"children":4817},{},[4818,4844],{"type":48,"tag":1623,"props":4819,"children":4820},{},[4821],{"type":48,"tag":1627,"props":4822,"children":4823},{},[4824,4829,4834,4839],{"type":48,"tag":1631,"props":4825,"children":4826},{},[4827],{"type":62,"value":4828},"Option",{"type":48,"tag":1631,"props":4830,"children":4831},{},[4832],{"type":62,"value":4833},"Type",{"type":48,"tag":1631,"props":4835,"children":4836},{},[4837],{"type":62,"value":4838},"Default",{"type":48,"tag":1631,"props":4840,"children":4841},{},[4842],{"type":62,"value":4843},"Purpose",{"type":48,"tag":1642,"props":4845,"children":4846},{},[4847,4883,4933,4975,5004,5039,5074,5109,5143,5176,5209,5247,5280,5310],{"type":48,"tag":1627,"props":4848,"children":4849},{},[4850,4859,4868,4873],{"type":48,"tag":1649,"props":4851,"children":4852},{},[4853],{"type":48,"tag":113,"props":4854,"children":4856},{"className":4855},[],[4857],{"type":62,"value":4858},"dsn",{"type":48,"tag":1649,"props":4860,"children":4861},{},[4862],{"type":48,"tag":113,"props":4863,"children":4865},{"className":4864},[],[4866],{"type":62,"value":4867},"String",{"type":48,"tag":1649,"props":4869,"children":4870},{},[4871],{"type":62,"value":4872},"—",{"type":48,"tag":1649,"props":4874,"children":4875},{},[4876,4881],{"type":48,"tag":141,"props":4877,"children":4878},{},[4879],{"type":62,"value":4880},"Required.",{"type":62,"value":4882}," Project DSN; SDK silently disabled if empty",{"type":48,"tag":1627,"props":4884,"children":4885},{},[4886,4895,4903,4907],{"type":48,"tag":1649,"props":4887,"children":4888},{},[4889],{"type":48,"tag":113,"props":4890,"children":4892},{"className":4891},[],[4893],{"type":62,"value":4894},"environment",{"type":48,"tag":1649,"props":4896,"children":4897},{},[4898],{"type":48,"tag":113,"props":4899,"children":4901},{"className":4900},[],[4902],{"type":62,"value":4867},{"type":48,"tag":1649,"props":4904,"children":4905},{},[4906],{"type":62,"value":4872},{"type":48,"tag":1649,"props":4908,"children":4909},{},[4910,4912,4918,4919,4925,4927],{"type":62,"value":4911},"e.g., ",{"type":48,"tag":113,"props":4913,"children":4915},{"className":4914},[],[4916],{"type":62,"value":4917},"\"production\"",{"type":62,"value":120},{"type":48,"tag":113,"props":4920,"children":4922},{"className":4921},[],[4923],{"type":62,"value":4924},"\"staging\"",{"type":62,"value":4926},". Env: ",{"type":48,"tag":113,"props":4928,"children":4930},{"className":4929},[],[4931],{"type":62,"value":4932},"SENTRY_ENVIRONMENT",{"type":48,"tag":1627,"props":4934,"children":4935},{},[4936,4945,4953,4957],{"type":48,"tag":1649,"props":4937,"children":4938},{},[4939],{"type":48,"tag":113,"props":4940,"children":4942},{"className":4941},[],[4943],{"type":62,"value":4944},"release",{"type":48,"tag":1649,"props":4946,"children":4947},{},[4948],{"type":48,"tag":113,"props":4949,"children":4951},{"className":4950},[],[4952],{"type":62,"value":4867},{"type":48,"tag":1649,"props":4954,"children":4955},{},[4956],{"type":62,"value":4872},{"type":48,"tag":1649,"props":4958,"children":4959},{},[4960,4962,4968,4969],{"type":62,"value":4961},"App version, e.g., ",{"type":48,"tag":113,"props":4963,"children":4965},{"className":4964},[],[4966],{"type":62,"value":4967},"\"my-app@1.0.0+42\"",{"type":62,"value":4926},{"type":48,"tag":113,"props":4970,"children":4972},{"className":4971},[],[4973],{"type":62,"value":4974},"SENTRY_RELEASE",{"type":48,"tag":1627,"props":4976,"children":4977},{},[4978,4987,4995,4999],{"type":48,"tag":1649,"props":4979,"children":4980},{},[4981],{"type":48,"tag":113,"props":4982,"children":4984},{"className":4983},[],[4985],{"type":62,"value":4986},"dist",{"type":48,"tag":1649,"props":4988,"children":4989},{},[4990],{"type":48,"tag":113,"props":4991,"children":4993},{"className":4992},[],[4994],{"type":62,"value":4867},{"type":48,"tag":1649,"props":4996,"children":4997},{},[4998],{"type":62,"value":4872},{"type":48,"tag":1649,"props":5000,"children":5001},{},[5002],{"type":62,"value":5003},"Build variant \u002F distribution identifier",{"type":48,"tag":1627,"props":5005,"children":5006},{},[5007,5016,5025,5034],{"type":48,"tag":1649,"props":5008,"children":5009},{},[5010],{"type":48,"tag":113,"props":5011,"children":5013},{"className":5012},[],[5014],{"type":62,"value":5015},"sendDefaultPii",{"type":48,"tag":1649,"props":5017,"children":5018},{},[5019],{"type":48,"tag":113,"props":5020,"children":5022},{"className":5021},[],[5023],{"type":62,"value":5024},"Boolean",{"type":48,"tag":1649,"props":5026,"children":5027},{},[5028],{"type":48,"tag":113,"props":5029,"children":5031},{"className":5030},[],[5032],{"type":62,"value":5033},"false",{"type":48,"tag":1649,"props":5035,"children":5036},{},[5037],{"type":62,"value":5038},"Include PII: IP address, user data",{"type":48,"tag":1627,"props":5040,"children":5041},{},[5042,5051,5060,5069],{"type":48,"tag":1649,"props":5043,"children":5044},{},[5045],{"type":48,"tag":113,"props":5046,"children":5048},{"className":5047},[],[5049],{"type":62,"value":5050},"sampleRate",{"type":48,"tag":1649,"props":5052,"children":5053},{},[5054],{"type":48,"tag":113,"props":5055,"children":5057},{"className":5056},[],[5058],{"type":62,"value":5059},"Double",{"type":48,"tag":1649,"props":5061,"children":5062},{},[5063],{"type":48,"tag":113,"props":5064,"children":5066},{"className":5065},[],[5067],{"type":62,"value":5068},"1.0",{"type":48,"tag":1649,"props":5070,"children":5071},{},[5072],{"type":62,"value":5073},"Error event sampling (0.0–1.0)",{"type":48,"tag":1627,"props":5075,"children":5076},{},[5077,5086,5095,5104],{"type":48,"tag":1649,"props":5078,"children":5079},{},[5080],{"type":48,"tag":113,"props":5081,"children":5083},{"className":5082},[],[5084],{"type":62,"value":5085},"maxBreadcrumbs",{"type":48,"tag":1649,"props":5087,"children":5088},{},[5089],{"type":48,"tag":113,"props":5090,"children":5092},{"className":5091},[],[5093],{"type":62,"value":5094},"Int",{"type":48,"tag":1649,"props":5096,"children":5097},{},[5098],{"type":48,"tag":113,"props":5099,"children":5101},{"className":5100},[],[5102],{"type":62,"value":5103},"100",{"type":48,"tag":1649,"props":5105,"children":5106},{},[5107],{"type":62,"value":5108},"Max breadcrumbs per event",{"type":48,"tag":1627,"props":5110,"children":5111},{},[5112,5121,5129,5138],{"type":48,"tag":1649,"props":5113,"children":5114},{},[5115],{"type":48,"tag":113,"props":5116,"children":5118},{"className":5117},[],[5119],{"type":62,"value":5120},"isAttachStacktrace",{"type":48,"tag":1649,"props":5122,"children":5123},{},[5124],{"type":48,"tag":113,"props":5125,"children":5127},{"className":5126},[],[5128],{"type":62,"value":5024},{"type":48,"tag":1649,"props":5130,"children":5131},{},[5132],{"type":48,"tag":113,"props":5133,"children":5135},{"className":5134},[],[5136],{"type":62,"value":5137},"true",{"type":48,"tag":1649,"props":5139,"children":5140},{},[5141],{"type":62,"value":5142},"Auto-attach stack traces to message events",{"type":48,"tag":1627,"props":5144,"children":5145},{},[5146,5155,5163,5171],{"type":48,"tag":1649,"props":5147,"children":5148},{},[5149],{"type":48,"tag":113,"props":5150,"children":5152},{"className":5151},[],[5153],{"type":62,"value":5154},"isAttachScreenshot",{"type":48,"tag":1649,"props":5156,"children":5157},{},[5158],{"type":48,"tag":113,"props":5159,"children":5161},{"className":5160},[],[5162],{"type":62,"value":5024},{"type":48,"tag":1649,"props":5164,"children":5165},{},[5166],{"type":48,"tag":113,"props":5167,"children":5169},{"className":5168},[],[5170],{"type":62,"value":5033},{"type":48,"tag":1649,"props":5172,"children":5173},{},[5174],{"type":62,"value":5175},"Capture screenshot on error",{"type":48,"tag":1627,"props":5177,"children":5178},{},[5179,5188,5196,5204],{"type":48,"tag":1649,"props":5180,"children":5181},{},[5182],{"type":48,"tag":113,"props":5183,"children":5185},{"className":5184},[],[5186],{"type":62,"value":5187},"isAttachViewHierarchy",{"type":48,"tag":1649,"props":5189,"children":5190},{},[5191],{"type":48,"tag":113,"props":5192,"children":5194},{"className":5193},[],[5195],{"type":62,"value":5024},{"type":48,"tag":1649,"props":5197,"children":5198},{},[5199],{"type":48,"tag":113,"props":5200,"children":5202},{"className":5201},[],[5203],{"type":62,"value":5033},{"type":48,"tag":1649,"props":5205,"children":5206},{},[5207],{"type":62,"value":5208},"Attach JSON view hierarchy as attachment",{"type":48,"tag":1627,"props":5210,"children":5211},{},[5212,5221,5229,5237],{"type":48,"tag":1649,"props":5213,"children":5214},{},[5215],{"type":48,"tag":113,"props":5216,"children":5218},{"className":5217},[],[5219],{"type":62,"value":5220},"isDebug",{"type":48,"tag":1649,"props":5222,"children":5223},{},[5224],{"type":48,"tag":113,"props":5225,"children":5227},{"className":5226},[],[5228],{"type":62,"value":5024},{"type":48,"tag":1649,"props":5230,"children":5231},{},[5232],{"type":48,"tag":113,"props":5233,"children":5235},{"className":5234},[],[5236],{"type":62,"value":5033},{"type":48,"tag":1649,"props":5238,"children":5239},{},[5240,5242],{"type":62,"value":5241},"Verbose SDK output. ",{"type":48,"tag":141,"props":5243,"children":5244},{},[5245],{"type":62,"value":5246},"Never use in production",{"type":48,"tag":1627,"props":5248,"children":5249},{},[5250,5259,5267,5275],{"type":48,"tag":1649,"props":5251,"children":5252},{},[5253],{"type":48,"tag":113,"props":5254,"children":5256},{"className":5255},[],[5257],{"type":62,"value":5258},"isEnabled",{"type":48,"tag":1649,"props":5260,"children":5261},{},[5262],{"type":48,"tag":113,"props":5263,"children":5265},{"className":5264},[],[5266],{"type":62,"value":5024},{"type":48,"tag":1649,"props":5268,"children":5269},{},[5270],{"type":48,"tag":113,"props":5271,"children":5273},{"className":5272},[],[5274],{"type":62,"value":5137},{"type":48,"tag":1649,"props":5276,"children":5277},{},[5278],{"type":62,"value":5279},"Disable SDK entirely (e.g., for testing)",{"type":48,"tag":1627,"props":5281,"children":5282},{},[5283,5292,5301,5305],{"type":48,"tag":1649,"props":5284,"children":5285},{},[5286],{"type":48,"tag":113,"props":5287,"children":5289},{"className":5288},[],[5290],{"type":62,"value":5291},"beforeSend",{"type":48,"tag":1649,"props":5293,"children":5294},{},[5295],{"type":48,"tag":113,"props":5296,"children":5298},{"className":5297},[],[5299],{"type":62,"value":5300},"SentryOptions.BeforeSendCallback",{"type":48,"tag":1649,"props":5302,"children":5303},{},[5304],{"type":62,"value":4872},{"type":48,"tag":1649,"props":5306,"children":5307},{},[5308],{"type":62,"value":5309},"Modify or drop error events before sending",{"type":48,"tag":1627,"props":5311,"children":5312},{},[5313,5322,5331,5335],{"type":48,"tag":1649,"props":5314,"children":5315},{},[5316],{"type":48,"tag":113,"props":5317,"children":5319},{"className":5318},[],[5320],{"type":62,"value":5321},"beforeBreadcrumb",{"type":48,"tag":1649,"props":5323,"children":5324},{},[5325],{"type":48,"tag":113,"props":5326,"children":5328},{"className":5327},[],[5329],{"type":62,"value":5330},"SentryOptions.BeforeBreadcrumbCallback",{"type":48,"tag":1649,"props":5332,"children":5333},{},[5334],{"type":62,"value":4872},{"type":48,"tag":1649,"props":5336,"children":5337},{},[5338],{"type":62,"value":5339},"Filter breadcrumbs before storage",{"type":48,"tag":2123,"props":5341,"children":5343},{"id":5342},"tracing-options",[5344],{"type":62,"value":5345},"Tracing Options",{"type":48,"tag":1619,"props":5347,"children":5348},{},[5349,5371],{"type":48,"tag":1623,"props":5350,"children":5351},{},[5352],{"type":48,"tag":1627,"props":5353,"children":5354},{},[5355,5359,5363,5367],{"type":48,"tag":1631,"props":5356,"children":5357},{},[5358],{"type":62,"value":4828},{"type":48,"tag":1631,"props":5360,"children":5361},{},[5362],{"type":62,"value":4833},{"type":48,"tag":1631,"props":5364,"children":5365},{},[5366],{"type":62,"value":4838},{"type":48,"tag":1631,"props":5368,"children":5369},{},[5370],{"type":62,"value":4843},{"type":48,"tag":1642,"props":5372,"children":5373},{},[5374,5415,5450,5501,5534,5574],{"type":48,"tag":1627,"props":5375,"children":5376},{},[5377,5386,5394,5403],{"type":48,"tag":1649,"props":5378,"children":5379},{},[5380],{"type":48,"tag":113,"props":5381,"children":5383},{"className":5382},[],[5384],{"type":62,"value":5385},"tracesSampleRate",{"type":48,"tag":1649,"props":5387,"children":5388},{},[5389],{"type":48,"tag":113,"props":5390,"children":5392},{"className":5391},[],[5393],{"type":62,"value":5059},{"type":48,"tag":1649,"props":5395,"children":5396},{},[5397],{"type":48,"tag":113,"props":5398,"children":5400},{"className":5399},[],[5401],{"type":62,"value":5402},"0.0",{"type":48,"tag":1649,"props":5404,"children":5405},{},[5406,5408,5413],{"type":62,"value":5407},"Transaction sample rate (0–1). Use ",{"type":48,"tag":113,"props":5409,"children":5411},{"className":5410},[],[5412],{"type":62,"value":5068},{"type":62,"value":5414}," in dev",{"type":48,"tag":1627,"props":5416,"children":5417},{},[5418,5427,5436,5440],{"type":48,"tag":1649,"props":5419,"children":5420},{},[5421],{"type":48,"tag":113,"props":5422,"children":5424},{"className":5423},[],[5425],{"type":62,"value":5426},"tracesSampler",{"type":48,"tag":1649,"props":5428,"children":5429},{},[5430],{"type":48,"tag":113,"props":5431,"children":5433},{"className":5432},[],[5434],{"type":62,"value":5435},"TracesSamplerCallback",{"type":48,"tag":1649,"props":5437,"children":5438},{},[5439],{"type":62,"value":4872},{"type":48,"tag":1649,"props":5441,"children":5442},{},[5443,5445],{"type":62,"value":5444},"Per-transaction sampling; overrides ",{"type":48,"tag":113,"props":5446,"children":5448},{"className":5447},[],[5449],{"type":62,"value":5385},{"type":48,"tag":1627,"props":5451,"children":5452},{},[5453,5462,5471,5480],{"type":48,"tag":1649,"props":5454,"children":5455},{},[5456],{"type":48,"tag":113,"props":5457,"children":5459},{"className":5458},[],[5460],{"type":62,"value":5461},"tracePropagationTargets",{"type":48,"tag":1649,"props":5463,"children":5464},{},[5465],{"type":48,"tag":113,"props":5466,"children":5468},{"className":5467},[],[5469],{"type":62,"value":5470},"List\u003CString>",{"type":48,"tag":1649,"props":5472,"children":5473},{},[5474],{"type":48,"tag":113,"props":5475,"children":5477},{"className":5476},[],[5478],{"type":62,"value":5479},"[\".*\"]",{"type":48,"tag":1649,"props":5481,"children":5482},{},[5483,5485,5491,5493,5499],{"type":62,"value":5484},"Hosts\u002FURLs to receive ",{"type":48,"tag":113,"props":5486,"children":5488},{"className":5487},[],[5489],{"type":62,"value":5490},"sentry-trace",{"type":62,"value":5492}," and ",{"type":48,"tag":113,"props":5494,"children":5496},{"className":5495},[],[5497],{"type":62,"value":5498},"baggage",{"type":62,"value":5500}," headers",{"type":48,"tag":1627,"props":5502,"children":5503},{},[5504,5513,5521,5529],{"type":48,"tag":1649,"props":5505,"children":5506},{},[5507],{"type":48,"tag":113,"props":5508,"children":5510},{"className":5509},[],[5511],{"type":62,"value":5512},"isEnableAutoActivityLifecycleTracing",{"type":48,"tag":1649,"props":5514,"children":5515},{},[5516],{"type":48,"tag":113,"props":5517,"children":5519},{"className":5518},[],[5520],{"type":62,"value":5024},{"type":48,"tag":1649,"props":5522,"children":5523},{},[5524],{"type":48,"tag":113,"props":5525,"children":5527},{"className":5526},[],[5528],{"type":62,"value":5137},{"type":48,"tag":1649,"props":5530,"children":5531},{},[5532],{"type":62,"value":5533},"Auto-instrument Activity lifecycle",{"type":48,"tag":1627,"props":5535,"children":5536},{},[5537,5546,5554,5562],{"type":48,"tag":1649,"props":5538,"children":5539},{},[5540],{"type":48,"tag":113,"props":5541,"children":5543},{"className":5542},[],[5544],{"type":62,"value":5545},"isEnableTimeToFullDisplayTracing",{"type":48,"tag":1649,"props":5547,"children":5548},{},[5549],{"type":48,"tag":113,"props":5550,"children":5552},{"className":5551},[],[5553],{"type":62,"value":5024},{"type":48,"tag":1649,"props":5555,"children":5556},{},[5557],{"type":48,"tag":113,"props":5558,"children":5560},{"className":5559},[],[5561],{"type":62,"value":5033},{"type":48,"tag":1649,"props":5563,"children":5564},{},[5565,5567,5573],{"type":62,"value":5566},"TTFD spans (requires ",{"type":48,"tag":113,"props":5568,"children":5570},{"className":5569},[],[5571],{"type":62,"value":5572},"Sentry.reportFullyDisplayed()",{"type":62,"value":2292},{"type":48,"tag":1627,"props":5575,"children":5576},{},[5577,5586,5594,5602],{"type":48,"tag":1649,"props":5578,"children":5579},{},[5580],{"type":48,"tag":113,"props":5581,"children":5583},{"className":5582},[],[5584],{"type":62,"value":5585},"isEnableUserInteractionTracing",{"type":48,"tag":1649,"props":5587,"children":5588},{},[5589],{"type":48,"tag":113,"props":5590,"children":5592},{"className":5591},[],[5593],{"type":62,"value":5024},{"type":48,"tag":1649,"props":5595,"children":5596},{},[5597],{"type":48,"tag":113,"props":5598,"children":5600},{"className":5599},[],[5601],{"type":62,"value":5033},{"type":48,"tag":1649,"props":5603,"children":5604},{},[5605],{"type":62,"value":5606},"Auto-instrument user gestures as transactions",{"type":48,"tag":2123,"props":5608,"children":5610},{"id":5609},"profiling-options",[5611],{"type":62,"value":5612},"Profiling Options",{"type":48,"tag":1619,"props":5614,"children":5615},{},[5616,5638],{"type":48,"tag":1623,"props":5617,"children":5618},{},[5619],{"type":48,"tag":1627,"props":5620,"children":5621},{},[5622,5626,5630,5634],{"type":48,"tag":1631,"props":5623,"children":5624},{},[5625],{"type":62,"value":4828},{"type":48,"tag":1631,"props":5627,"children":5628},{},[5629],{"type":62,"value":4833},{"type":48,"tag":1631,"props":5631,"children":5632},{},[5633],{"type":62,"value":4838},{"type":48,"tag":1631,"props":5635,"children":5636},{},[5637],{"type":62,"value":4843},{"type":48,"tag":1642,"props":5639,"children":5640},{},[5641,5674,5707],{"type":48,"tag":1627,"props":5642,"children":5643},{},[5644,5653,5661,5669],{"type":48,"tag":1649,"props":5645,"children":5646},{},[5647],{"type":48,"tag":113,"props":5648,"children":5650},{"className":5649},[],[5651],{"type":62,"value":5652},"profileSessionSampleRate",{"type":48,"tag":1649,"props":5654,"children":5655},{},[5656],{"type":48,"tag":113,"props":5657,"children":5659},{"className":5658},[],[5660],{"type":62,"value":5059},{"type":48,"tag":1649,"props":5662,"children":5663},{},[5664],{"type":48,"tag":113,"props":5665,"children":5667},{"className":5666},[],[5668],{"type":62,"value":5402},{"type":48,"tag":1649,"props":5670,"children":5671},{},[5672],{"type":62,"value":5673},"Continuous profiling sample rate (SDK ≥ 8.7.0, API 22+)",{"type":48,"tag":1627,"props":5675,"children":5676},{},[5677,5686,5694,5702],{"type":48,"tag":1649,"props":5678,"children":5679},{},[5680],{"type":48,"tag":113,"props":5681,"children":5683},{"className":5682},[],[5684],{"type":62,"value":5685},"profilesSampleRate",{"type":48,"tag":1649,"props":5687,"children":5688},{},[5689],{"type":48,"tag":113,"props":5690,"children":5692},{"className":5691},[],[5693],{"type":62,"value":5059},{"type":48,"tag":1649,"props":5695,"children":5696},{},[5697],{"type":48,"tag":113,"props":5698,"children":5700},{"className":5699},[],[5701],{"type":62,"value":5402},{"type":48,"tag":1649,"props":5703,"children":5704},{},[5705],{"type":62,"value":5706},"Legacy transaction profiling rate (mutually exclusive with continuous)",{"type":48,"tag":1627,"props":5708,"children":5709},{},[5710,5719,5727,5735],{"type":48,"tag":1649,"props":5711,"children":5712},{},[5713],{"type":48,"tag":113,"props":5714,"children":5716},{"className":5715},[],[5717],{"type":62,"value":5718},"isProfilingStartOnAppStart",{"type":48,"tag":1649,"props":5720,"children":5721},{},[5722],{"type":48,"tag":113,"props":5723,"children":5725},{"className":5724},[],[5726],{"type":62,"value":5024},{"type":48,"tag":1649,"props":5728,"children":5729},{},[5730],{"type":48,"tag":113,"props":5731,"children":5733},{"className":5732},[],[5734],{"type":62,"value":5033},{"type":48,"tag":1649,"props":5736,"children":5737},{},[5738],{"type":62,"value":5739},"Auto-start profiling session on app launch",{"type":48,"tag":2123,"props":5741,"children":5743},{"id":5742},"anr-options",[5744],{"type":62,"value":5745},"ANR Options",{"type":48,"tag":1619,"props":5747,"children":5748},{},[5749,5771],{"type":48,"tag":1623,"props":5750,"children":5751},{},[5752],{"type":48,"tag":1627,"props":5753,"children":5754},{},[5755,5759,5763,5767],{"type":48,"tag":1631,"props":5756,"children":5757},{},[5758],{"type":62,"value":4828},{"type":48,"tag":1631,"props":5760,"children":5761},{},[5762],{"type":62,"value":4833},{"type":48,"tag":1631,"props":5764,"children":5765},{},[5766],{"type":62,"value":4838},{"type":48,"tag":1631,"props":5768,"children":5769},{},[5770],{"type":62,"value":4843},{"type":48,"tag":1642,"props":5772,"children":5773},{},[5774,5807,5842],{"type":48,"tag":1627,"props":5775,"children":5776},{},[5777,5786,5794,5802],{"type":48,"tag":1649,"props":5778,"children":5779},{},[5780],{"type":48,"tag":113,"props":5781,"children":5783},{"className":5782},[],[5784],{"type":62,"value":5785},"isAnrEnabled",{"type":48,"tag":1649,"props":5787,"children":5788},{},[5789],{"type":48,"tag":113,"props":5790,"children":5792},{"className":5791},[],[5793],{"type":62,"value":5024},{"type":48,"tag":1649,"props":5795,"children":5796},{},[5797],{"type":48,"tag":113,"props":5798,"children":5800},{"className":5799},[],[5801],{"type":62,"value":5137},{"type":48,"tag":1649,"props":5803,"children":5804},{},[5805],{"type":62,"value":5806},"Enable ANR watchdog thread",{"type":48,"tag":1627,"props":5808,"children":5809},{},[5810,5819,5828,5837],{"type":48,"tag":1649,"props":5811,"children":5812},{},[5813],{"type":48,"tag":113,"props":5814,"children":5816},{"className":5815},[],[5817],{"type":62,"value":5818},"anrTimeoutIntervalMillis",{"type":48,"tag":1649,"props":5820,"children":5821},{},[5822],{"type":48,"tag":113,"props":5823,"children":5825},{"className":5824},[],[5826],{"type":62,"value":5827},"Long",{"type":48,"tag":1649,"props":5829,"children":5830},{},[5831],{"type":48,"tag":113,"props":5832,"children":5834},{"className":5833},[],[5835],{"type":62,"value":5836},"5000",{"type":48,"tag":1649,"props":5838,"children":5839},{},[5840],{"type":62,"value":5841},"Milliseconds before reporting ANR",{"type":48,"tag":1627,"props":5843,"children":5844},{},[5845,5854,5862,5870],{"type":48,"tag":1649,"props":5846,"children":5847},{},[5848],{"type":48,"tag":113,"props":5849,"children":5851},{"className":5850},[],[5852],{"type":62,"value":5853},"isAnrReportInDebug",{"type":48,"tag":1649,"props":5855,"children":5856},{},[5857],{"type":48,"tag":113,"props":5858,"children":5860},{"className":5859},[],[5861],{"type":62,"value":5024},{"type":48,"tag":1649,"props":5863,"children":5864},{},[5865],{"type":48,"tag":113,"props":5866,"children":5868},{"className":5867},[],[5869],{"type":62,"value":5033},{"type":48,"tag":1649,"props":5871,"children":5872},{},[5873],{"type":62,"value":5874},"Report ANRs in debug builds (noisy in debugger)",{"type":48,"tag":2123,"props":5876,"children":5878},{"id":5877},"ndk-options",[5879],{"type":62,"value":5880},"NDK Options",{"type":48,"tag":1619,"props":5882,"children":5883},{},[5884,5906],{"type":48,"tag":1623,"props":5885,"children":5886},{},[5887],{"type":48,"tag":1627,"props":5888,"children":5889},{},[5890,5894,5898,5902],{"type":48,"tag":1631,"props":5891,"children":5892},{},[5893],{"type":62,"value":4828},{"type":48,"tag":1631,"props":5895,"children":5896},{},[5897],{"type":62,"value":4833},{"type":48,"tag":1631,"props":5899,"children":5900},{},[5901],{"type":62,"value":4838},{"type":48,"tag":1631,"props":5903,"children":5904},{},[5905],{"type":62,"value":4843},{"type":48,"tag":1642,"props":5907,"children":5908},{},[5909,5942,5975],{"type":48,"tag":1627,"props":5910,"children":5911},{},[5912,5921,5929,5937],{"type":48,"tag":1649,"props":5913,"children":5914},{},[5915],{"type":48,"tag":113,"props":5916,"children":5918},{"className":5917},[],[5919],{"type":62,"value":5920},"isEnableNdk",{"type":48,"tag":1649,"props":5922,"children":5923},{},[5924],{"type":48,"tag":113,"props":5925,"children":5927},{"className":5926},[],[5928],{"type":62,"value":5024},{"type":48,"tag":1649,"props":5930,"children":5931},{},[5932],{"type":48,"tag":113,"props":5933,"children":5935},{"className":5934},[],[5936],{"type":62,"value":5137},{"type":48,"tag":1649,"props":5938,"children":5939},{},[5940],{"type":62,"value":5941},"Enable native crash capture via sentry-native",{"type":48,"tag":1627,"props":5943,"children":5944},{},[5945,5954,5962,5970],{"type":48,"tag":1649,"props":5946,"children":5947},{},[5948],{"type":48,"tag":113,"props":5949,"children":5951},{"className":5950},[],[5952],{"type":62,"value":5953},"isEnableScopeSync",{"type":48,"tag":1649,"props":5955,"children":5956},{},[5957],{"type":48,"tag":113,"props":5958,"children":5960},{"className":5959},[],[5961],{"type":62,"value":5024},{"type":48,"tag":1649,"props":5963,"children":5964},{},[5965],{"type":48,"tag":113,"props":5966,"children":5968},{"className":5967},[],[5969],{"type":62,"value":5137},{"type":48,"tag":1649,"props":5971,"children":5972},{},[5973],{"type":62,"value":5974},"Sync Java scope (user, tags) to NDK layer",{"type":48,"tag":1627,"props":5976,"children":5977},{},[5978,5987,5995,6003],{"type":48,"tag":1649,"props":5979,"children":5980},{},[5981],{"type":48,"tag":113,"props":5982,"children":5984},{"className":5983},[],[5985],{"type":62,"value":5986},"isEnableTombstoneFetchJob",{"type":48,"tag":1649,"props":5988,"children":5989},{},[5990],{"type":48,"tag":113,"props":5991,"children":5993},{"className":5992},[],[5994],{"type":62,"value":5024},{"type":48,"tag":1649,"props":5996,"children":5997},{},[5998],{"type":48,"tag":113,"props":5999,"children":6001},{"className":6000},[],[6002],{"type":62,"value":5137},{"type":48,"tag":1649,"props":6004,"children":6005},{},[6006],{"type":62,"value":6007},"Fetch NDK tombstone files for enrichment",{"type":48,"tag":2123,"props":6009,"children":6011},{"id":6010},"session-replay-options-optionssessionreplay",[6012,6014,6020],{"type":62,"value":6013},"Session Replay Options (",{"type":48,"tag":113,"props":6015,"children":6017},{"className":6016},[],[6018],{"type":62,"value":6019},"options.sessionReplay",{"type":62,"value":2292},{"type":48,"tag":1619,"props":6022,"children":6023},{},[6024,6046],{"type":48,"tag":1623,"props":6025,"children":6026},{},[6027],{"type":48,"tag":1627,"props":6028,"children":6029},{},[6030,6034,6038,6042],{"type":48,"tag":1631,"props":6031,"children":6032},{},[6033],{"type":62,"value":4828},{"type":48,"tag":1631,"props":6035,"children":6036},{},[6037],{"type":62,"value":4833},{"type":48,"tag":1631,"props":6039,"children":6040},{},[6041],{"type":62,"value":4838},{"type":48,"tag":1631,"props":6043,"children":6044},{},[6045],{"type":62,"value":4843},{"type":48,"tag":1642,"props":6047,"children":6048},{},[6049,6082,6115,6148,6181],{"type":48,"tag":1627,"props":6050,"children":6051},{},[6052,6061,6069,6077],{"type":48,"tag":1649,"props":6053,"children":6054},{},[6055],{"type":48,"tag":113,"props":6056,"children":6058},{"className":6057},[],[6059],{"type":62,"value":6060},"sessionSampleRate",{"type":48,"tag":1649,"props":6062,"children":6063},{},[6064],{"type":48,"tag":113,"props":6065,"children":6067},{"className":6066},[],[6068],{"type":62,"value":5059},{"type":48,"tag":1649,"props":6070,"children":6071},{},[6072],{"type":48,"tag":113,"props":6073,"children":6075},{"className":6074},[],[6076],{"type":62,"value":5402},{"type":48,"tag":1649,"props":6078,"children":6079},{},[6080],{"type":62,"value":6081},"Fraction of all sessions to record",{"type":48,"tag":1627,"props":6083,"children":6084},{},[6085,6094,6102,6110],{"type":48,"tag":1649,"props":6086,"children":6087},{},[6088],{"type":48,"tag":113,"props":6089,"children":6091},{"className":6090},[],[6092],{"type":62,"value":6093},"onErrorSampleRate",{"type":48,"tag":1649,"props":6095,"children":6096},{},[6097],{"type":48,"tag":113,"props":6098,"children":6100},{"className":6099},[],[6101],{"type":62,"value":5059},{"type":48,"tag":1649,"props":6103,"children":6104},{},[6105],{"type":48,"tag":113,"props":6106,"children":6108},{"className":6107},[],[6109],{"type":62,"value":5402},{"type":48,"tag":1649,"props":6111,"children":6112},{},[6113],{"type":62,"value":6114},"Fraction of error sessions to record",{"type":48,"tag":1627,"props":6116,"children":6117},{},[6118,6127,6135,6143],{"type":48,"tag":1649,"props":6119,"children":6120},{},[6121],{"type":48,"tag":113,"props":6122,"children":6124},{"className":6123},[],[6125],{"type":62,"value":6126},"maskAllText",{"type":48,"tag":1649,"props":6128,"children":6129},{},[6130],{"type":48,"tag":113,"props":6131,"children":6133},{"className":6132},[],[6134],{"type":62,"value":5024},{"type":48,"tag":1649,"props":6136,"children":6137},{},[6138],{"type":48,"tag":113,"props":6139,"children":6141},{"className":6140},[],[6142],{"type":62,"value":5137},{"type":48,"tag":1649,"props":6144,"children":6145},{},[6146],{"type":62,"value":6147},"Mask all text in replays",{"type":48,"tag":1627,"props":6149,"children":6150},{},[6151,6160,6168,6176],{"type":48,"tag":1649,"props":6152,"children":6153},{},[6154],{"type":48,"tag":113,"props":6155,"children":6157},{"className":6156},[],[6158],{"type":62,"value":6159},"maskAllImages",{"type":48,"tag":1649,"props":6161,"children":6162},{},[6163],{"type":48,"tag":113,"props":6164,"children":6166},{"className":6165},[],[6167],{"type":62,"value":5024},{"type":48,"tag":1649,"props":6169,"children":6170},{},[6171],{"type":48,"tag":113,"props":6172,"children":6174},{"className":6173},[],[6175],{"type":62,"value":5137},{"type":48,"tag":1649,"props":6177,"children":6178},{},[6179],{"type":62,"value":6180},"Mask all images in replays",{"type":48,"tag":1627,"props":6182,"children":6183},{},[6184,6193,6202,6211],{"type":48,"tag":1649,"props":6185,"children":6186},{},[6187],{"type":48,"tag":113,"props":6188,"children":6190},{"className":6189},[],[6191],{"type":62,"value":6192},"quality",{"type":48,"tag":1649,"props":6194,"children":6195},{},[6196],{"type":48,"tag":113,"props":6197,"children":6199},{"className":6198},[],[6200],{"type":62,"value":6201},"SentryReplayQuality",{"type":48,"tag":1649,"props":6203,"children":6204},{},[6205],{"type":48,"tag":113,"props":6206,"children":6208},{"className":6207},[],[6209],{"type":62,"value":6210},"MEDIUM",{"type":48,"tag":1649,"props":6212,"children":6213},{},[6214,6216,6222,6223,6228,6229],{"type":62,"value":6215},"Video quality: ",{"type":48,"tag":113,"props":6217,"children":6219},{"className":6218},[],[6220],{"type":62,"value":6221},"LOW",{"type":62,"value":120},{"type":48,"tag":113,"props":6224,"children":6226},{"className":6225},[],[6227],{"type":62,"value":6210},{"type":62,"value":120},{"type":48,"tag":113,"props":6230,"children":6232},{"className":6231},[],[6233],{"type":62,"value":6234},"HIGH",{"type":48,"tag":2123,"props":6236,"children":6238},{"id":6237},"logging-options-optionslogs",[6239,6241,6247],{"type":62,"value":6240},"Logging Options (",{"type":48,"tag":113,"props":6242,"children":6244},{"className":6243},[],[6245],{"type":62,"value":6246},"options.logs",{"type":62,"value":2292},{"type":48,"tag":1619,"props":6249,"children":6250},{},[6251,6273],{"type":48,"tag":1623,"props":6252,"children":6253},{},[6254],{"type":48,"tag":1627,"props":6255,"children":6256},{},[6257,6261,6265,6269],{"type":48,"tag":1631,"props":6258,"children":6259},{},[6260],{"type":62,"value":4828},{"type":48,"tag":1631,"props":6262,"children":6263},{},[6264],{"type":62,"value":4833},{"type":48,"tag":1631,"props":6266,"children":6267},{},[6268],{"type":62,"value":4838},{"type":48,"tag":1631,"props":6270,"children":6271},{},[6272],{"type":62,"value":4843},{"type":48,"tag":1642,"props":6274,"children":6275},{},[6276,6315],{"type":48,"tag":1627,"props":6277,"children":6278},{},[6279,6287,6295,6303],{"type":48,"tag":1649,"props":6280,"children":6281},{},[6282],{"type":48,"tag":113,"props":6283,"children":6285},{"className":6284},[],[6286],{"type":62,"value":5258},{"type":48,"tag":1649,"props":6288,"children":6289},{},[6290],{"type":48,"tag":113,"props":6291,"children":6293},{"className":6292},[],[6294],{"type":62,"value":5024},{"type":48,"tag":1649,"props":6296,"children":6297},{},[6298],{"type":48,"tag":113,"props":6299,"children":6301},{"className":6300},[],[6302],{"type":62,"value":5033},{"type":48,"tag":1649,"props":6304,"children":6305},{},[6306,6308,6313],{"type":62,"value":6307},"Enable ",{"type":48,"tag":113,"props":6309,"children":6311},{"className":6310},[],[6312],{"type":62,"value":1969},{"type":62,"value":6314}," API (SDK ≥ 8.12.0)",{"type":48,"tag":1627,"props":6316,"children":6317},{},[6318,6327,6336,6340],{"type":48,"tag":1649,"props":6319,"children":6320},{},[6321],{"type":48,"tag":113,"props":6322,"children":6324},{"className":6323},[],[6325],{"type":62,"value":6326},"setBeforeSend",{"type":48,"tag":1649,"props":6328,"children":6329},{},[6330],{"type":48,"tag":113,"props":6331,"children":6333},{"className":6332},[],[6334],{"type":62,"value":6335},"BeforeSendLogCallback",{"type":48,"tag":1649,"props":6337,"children":6338},{},[6339],{"type":62,"value":4872},{"type":48,"tag":1649,"props":6341,"children":6342},{},[6343],{"type":62,"value":6344},"Filter\u002Fmodify log entries before sending",{"type":48,"tag":2123,"props":6346,"children":6348},{"id":6347},"environment-variables",[6349],{"type":62,"value":6350},"Environment Variables",{"type":48,"tag":1619,"props":6352,"children":6353},{},[6354,6374],{"type":48,"tag":1623,"props":6355,"children":6356},{},[6357],{"type":48,"tag":1627,"props":6358,"children":6359},{},[6360,6365,6369],{"type":48,"tag":1631,"props":6361,"children":6362},{},[6363],{"type":62,"value":6364},"Variable",{"type":48,"tag":1631,"props":6366,"children":6367},{},[6368],{"type":62,"value":4843},{"type":48,"tag":1631,"props":6370,"children":6371},{},[6372],{"type":62,"value":6373},"Notes",{"type":48,"tag":1642,"props":6375,"children":6376},{},[6377,6399,6424,6452,6479,6506],{"type":48,"tag":1627,"props":6378,"children":6379},{},[6380,6389,6394],{"type":48,"tag":1649,"props":6381,"children":6382},{},[6383],{"type":48,"tag":113,"props":6384,"children":6386},{"className":6385},[],[6387],{"type":62,"value":6388},"SENTRY_DSN",{"type":48,"tag":1649,"props":6390,"children":6391},{},[6392],{"type":62,"value":6393},"Data Source Name",{"type":48,"tag":1649,"props":6395,"children":6396},{},[6397],{"type":62,"value":6398},"Set in CI; SDK reads from environment at init",{"type":48,"tag":1627,"props":6400,"children":6401},{},[6402,6411,6416],{"type":48,"tag":1649,"props":6403,"children":6404},{},[6405],{"type":48,"tag":113,"props":6406,"children":6408},{"className":6407},[],[6409],{"type":62,"value":6410},"SENTRY_AUTH_TOKEN",{"type":48,"tag":1649,"props":6412,"children":6413},{},[6414],{"type":62,"value":6415},"Upload ProGuard mappings and source context",{"type":48,"tag":1649,"props":6417,"children":6418},{},[6419],{"type":48,"tag":141,"props":6420,"children":6421},{},[6422],{"type":62,"value":6423},"Never commit — use CI\u002FCD secrets",{"type":48,"tag":1627,"props":6425,"children":6426},{},[6427,6436,6441],{"type":48,"tag":1649,"props":6428,"children":6429},{},[6430],{"type":48,"tag":113,"props":6431,"children":6433},{"className":6432},[],[6434],{"type":62,"value":6435},"SENTRY_ORG",{"type":48,"tag":1649,"props":6437,"children":6438},{},[6439],{"type":62,"value":6440},"Organization slug",{"type":48,"tag":1649,"props":6442,"children":6443},{},[6444,6446],{"type":62,"value":6445},"Used by Gradle plugin ",{"type":48,"tag":113,"props":6447,"children":6449},{"className":6448},[],[6450],{"type":62,"value":6451},"sentry.org",{"type":48,"tag":1627,"props":6453,"children":6454},{},[6455,6464,6469],{"type":48,"tag":1649,"props":6456,"children":6457},{},[6458],{"type":48,"tag":113,"props":6459,"children":6461},{"className":6460},[],[6462],{"type":62,"value":6463},"SENTRY_PROJECT",{"type":48,"tag":1649,"props":6465,"children":6466},{},[6467],{"type":62,"value":6468},"Project slug",{"type":48,"tag":1649,"props":6470,"children":6471},{},[6472,6473],{"type":62,"value":6445},{"type":48,"tag":113,"props":6474,"children":6476},{"className":6475},[],[6477],{"type":62,"value":6478},"sentry.projectName",{"type":48,"tag":1627,"props":6480,"children":6481},{},[6482,6490,6495],{"type":48,"tag":1649,"props":6483,"children":6484},{},[6485],{"type":48,"tag":113,"props":6486,"children":6488},{"className":6487},[],[6489],{"type":62,"value":4974},{"type":48,"tag":1649,"props":6491,"children":6492},{},[6493],{"type":62,"value":6494},"Release identifier",{"type":48,"tag":1649,"props":6496,"children":6497},{},[6498,6500],{"type":62,"value":6499},"Falls back from ",{"type":48,"tag":113,"props":6501,"children":6503},{"className":6502},[],[6504],{"type":62,"value":6505},"options.release",{"type":48,"tag":1627,"props":6507,"children":6508},{},[6509,6517,6522],{"type":48,"tag":1649,"props":6510,"children":6511},{},[6512],{"type":48,"tag":113,"props":6513,"children":6515},{"className":6514},[],[6516],{"type":62,"value":4932},{"type":48,"tag":1649,"props":6518,"children":6519},{},[6520],{"type":62,"value":6521},"Environment name",{"type":48,"tag":1649,"props":6523,"children":6524},{},[6525,6526],{"type":62,"value":6499},{"type":48,"tag":113,"props":6527,"children":6529},{"className":6528},[],[6530],{"type":62,"value":6531},"options.environment",{"type":48,"tag":53,"props":6533,"children":6534},{},[6535,6537,6542],{"type":62,"value":6536},"You can also configure DSN and many options via ",{"type":48,"tag":113,"props":6538,"children":6540},{"className":6539},[],[6541],{"type":62,"value":4014},{"type":62,"value":6543}," meta-data:",{"type":48,"tag":190,"props":6545,"children":6547},{"className":4017,"code":6546,"language":4019,"meta":195,"style":195},"\u003Capplication>\n    \u003Cmeta-data android:name=\"io.sentry.dsn\" android:value=\"YOUR_DSN\" \u002F>\n    \u003Cmeta-data android:name=\"io.sentry.traces-sample-rate\" android:value=\"1.0\" \u002F>\n    \u003Cmeta-data android:name=\"io.sentry.environment\" android:value=\"production\" \u002F>\n    \u003Cmeta-data android:name=\"io.sentry.anr.enable\" android:value=\"true\" \u002F>\n    \u003Cmeta-data android:name=\"io.sentry.attach-screenshot\" android:value=\"true\" \u002F>\n    \u003Cmeta-data android:name=\"io.sentry.attach-view-hierarchy\" android:value=\"true\" \u002F>\n\u003C\u002Fapplication>\n",[6548],{"type":48,"tag":113,"props":6549,"children":6550},{"__ignoreMap":195},[6551,6559,6567,6575,6583,6591,6599,6607],{"type":48,"tag":201,"props":6552,"children":6553},{"class":203,"line":204},[6554],{"type":48,"tag":201,"props":6555,"children":6556},{},[6557],{"type":62,"value":6558},"\u003Capplication>\n",{"type":48,"tag":201,"props":6560,"children":6561},{"class":203,"line":214},[6562],{"type":48,"tag":201,"props":6563,"children":6564},{},[6565],{"type":62,"value":6566},"    \u003Cmeta-data android:name=\"io.sentry.dsn\" android:value=\"YOUR_DSN\" \u002F>\n",{"type":48,"tag":201,"props":6568,"children":6569},{"class":203,"line":256},[6570],{"type":48,"tag":201,"props":6571,"children":6572},{},[6573],{"type":62,"value":6574},"    \u003Cmeta-data android:name=\"io.sentry.traces-sample-rate\" android:value=\"1.0\" \u002F>\n",{"type":48,"tag":201,"props":6576,"children":6577},{"class":203,"line":265},[6578],{"type":48,"tag":201,"props":6579,"children":6580},{},[6581],{"type":62,"value":6582},"    \u003Cmeta-data android:name=\"io.sentry.environment\" android:value=\"production\" \u002F>\n",{"type":48,"tag":201,"props":6584,"children":6585},{"class":203,"line":274},[6586],{"type":48,"tag":201,"props":6587,"children":6588},{},[6589],{"type":62,"value":6590},"    \u003Cmeta-data android:name=\"io.sentry.anr.enable\" android:value=\"true\" \u002F>\n",{"type":48,"tag":201,"props":6592,"children":6593},{"class":203,"line":346},[6594],{"type":48,"tag":201,"props":6595,"children":6596},{},[6597],{"type":62,"value":6598},"    \u003Cmeta-data android:name=\"io.sentry.attach-screenshot\" android:value=\"true\" \u002F>\n",{"type":48,"tag":201,"props":6600,"children":6601},{"class":203,"line":401},[6602],{"type":48,"tag":201,"props":6603,"children":6604},{},[6605],{"type":62,"value":6606},"    \u003Cmeta-data android:name=\"io.sentry.attach-view-hierarchy\" android:value=\"true\" \u002F>\n",{"type":48,"tag":201,"props":6608,"children":6609},{"class":203,"line":409},[6610],{"type":48,"tag":201,"props":6611,"children":6612},{},[6613],{"type":62,"value":6614},"\u003C\u002Fapplication>\n",{"type":48,"tag":49,"props":6616,"children":6617},{},[6618],{"type":48,"tag":53,"props":6619,"children":6620},{},[6621,6623,6628,6630,6635],{"type":62,"value":6622},"⚠️ Manifest meta-data is a convenient alternative but does ",{"type":48,"tag":141,"props":6624,"children":6625},{},[6626],{"type":62,"value":6627},"not",{"type":62,"value":6629}," support the full option set. For complex configuration (session replay, profiling, hooks), use ",{"type":48,"tag":113,"props":6631,"children":6633},{"className":6632},[],[6634],{"type":62,"value":1844},{"type":62,"value":2264},{"type":48,"tag":175,"props":6637,"children":6638},{},[],{"type":48,"tag":86,"props":6640,"children":6642},{"id":6641},"verification",[6643],{"type":62,"value":2262},{"type":48,"tag":53,"props":6645,"children":6646},{},[6647],{"type":62,"value":6648},"After setup, verify Sentry is receiving events:",{"type":48,"tag":53,"props":6650,"children":6651},{},[6652],{"type":48,"tag":141,"props":6653,"children":6654},{},[6655],{"type":62,"value":6656},"Test error capture:",{"type":48,"tag":190,"props":6658,"children":6660},{"className":2539,"code":6659,"language":2541,"meta":195,"style":195},"\u002F\u002F In an Activity or Fragment\ntry {\n    throw RuntimeException(\"Sentry Android SDK test\")\n} catch (e: Exception) {\n    Sentry.captureException(e)\n}\n",[6661],{"type":48,"tag":113,"props":6662,"children":6663},{"__ignoreMap":195},[6664,6672,6680,6688,6696,6704],{"type":48,"tag":201,"props":6665,"children":6666},{"class":203,"line":204},[6667],{"type":48,"tag":201,"props":6668,"children":6669},{},[6670],{"type":62,"value":6671},"\u002F\u002F In an Activity or Fragment\n",{"type":48,"tag":201,"props":6673,"children":6674},{"class":203,"line":214},[6675],{"type":48,"tag":201,"props":6676,"children":6677},{},[6678],{"type":62,"value":6679},"try {\n",{"type":48,"tag":201,"props":6681,"children":6682},{"class":203,"line":256},[6683],{"type":48,"tag":201,"props":6684,"children":6685},{},[6686],{"type":62,"value":6687},"    throw RuntimeException(\"Sentry Android SDK test\")\n",{"type":48,"tag":201,"props":6689,"children":6690},{"class":203,"line":265},[6691],{"type":48,"tag":201,"props":6692,"children":6693},{},[6694],{"type":62,"value":6695},"} catch (e: Exception) {\n",{"type":48,"tag":201,"props":6697,"children":6698},{"class":203,"line":274},[6699],{"type":48,"tag":201,"props":6700,"children":6701},{},[6702],{"type":62,"value":6703},"    Sentry.captureException(e)\n",{"type":48,"tag":201,"props":6705,"children":6706},{"class":203,"line":346},[6707],{"type":48,"tag":201,"props":6708,"children":6709},{},[6710],{"type":62,"value":2569},{"type":48,"tag":53,"props":6712,"children":6713},{},[6714],{"type":48,"tag":141,"props":6715,"children":6716},{},[6717],{"type":62,"value":6718},"Test tracing:",{"type":48,"tag":190,"props":6720,"children":6722},{"className":2539,"code":6721,"language":2541,"meta":195,"style":195},"val transaction = Sentry.startTransaction(\"test-task\", \"task\")\nval span = transaction.startChild(\"test-span\", \"description\")\nspan.finish()\ntransaction.finish()\n",[6723],{"type":48,"tag":113,"props":6724,"children":6725},{"__ignoreMap":195},[6726,6734,6742,6750],{"type":48,"tag":201,"props":6727,"children":6728},{"class":203,"line":204},[6729],{"type":48,"tag":201,"props":6730,"children":6731},{},[6732],{"type":62,"value":6733},"val transaction = Sentry.startTransaction(\"test-task\", \"task\")\n",{"type":48,"tag":201,"props":6735,"children":6736},{"class":203,"line":214},[6737],{"type":48,"tag":201,"props":6738,"children":6739},{},[6740],{"type":62,"value":6741},"val span = transaction.startChild(\"test-span\", \"description\")\n",{"type":48,"tag":201,"props":6743,"children":6744},{"class":203,"line":256},[6745],{"type":48,"tag":201,"props":6746,"children":6747},{},[6748],{"type":62,"value":6749},"span.finish()\n",{"type":48,"tag":201,"props":6751,"children":6752},{"class":203,"line":265},[6753],{"type":48,"tag":201,"props":6754,"children":6755},{},[6756],{"type":62,"value":6757},"transaction.finish()\n",{"type":48,"tag":53,"props":6759,"children":6760},{},[6761],{"type":48,"tag":141,"props":6762,"children":6763},{},[6764],{"type":62,"value":6765},"Test structured logging (SDK ≥ 8.12.0):",{"type":48,"tag":190,"props":6767,"children":6769},{"className":2539,"code":6768,"language":2541,"meta":195,"style":195},"Sentry.logger().info(\"Sentry logging test\")\nSentry.logger().error(\"Error log test\", Exception(\"test error\"))\n",[6770],{"type":48,"tag":113,"props":6771,"children":6772},{"__ignoreMap":195},[6773,6781],{"type":48,"tag":201,"props":6774,"children":6775},{"class":203,"line":204},[6776],{"type":48,"tag":201,"props":6777,"children":6778},{},[6779],{"type":62,"value":6780},"Sentry.logger().info(\"Sentry logging test\")\n",{"type":48,"tag":201,"props":6782,"children":6783},{"class":203,"line":214},[6784],{"type":48,"tag":201,"props":6785,"children":6786},{},[6787],{"type":62,"value":6788},"Sentry.logger().error(\"Error log test\", Exception(\"test error\"))\n",{"type":48,"tag":53,"props":6790,"children":6791},{},[6792],{"type":48,"tag":141,"props":6793,"children":6794},{},[6795],{"type":62,"value":6796},"Check the Sentry dashboard:",{"type":48,"tag":93,"props":6798,"children":6799},{},[6800,6810,6828,6838],{"type":48,"tag":97,"props":6801,"children":6802},{},[6803,6808],{"type":48,"tag":141,"props":6804,"children":6805},{},[6806],{"type":62,"value":6807},"Issues",{"type":62,"value":6809}," → your test exception should appear within seconds",{"type":48,"tag":97,"props":6811,"children":6812},{},[6813,6818,6820,6826],{"type":48,"tag":141,"props":6814,"children":6815},{},[6816],{"type":62,"value":6817},"Traces",{"type":62,"value":6819}," → look for ",{"type":48,"tag":113,"props":6821,"children":6823},{"className":6822},[],[6824],{"type":62,"value":6825},"test-task",{"type":62,"value":6827}," transaction with child span",{"type":48,"tag":97,"props":6829,"children":6830},{},[6831,6836],{"type":48,"tag":141,"props":6832,"children":6833},{},[6834],{"type":62,"value":6835},"Replays",{"type":62,"value":6837}," → session recording visible after app interaction (requires API 26+)",{"type":48,"tag":97,"props":6839,"children":6840},{},[6841,6846],{"type":48,"tag":141,"props":6842,"children":6843},{},[6844],{"type":62,"value":6845},"Logs",{"type":62,"value":6847}," → structured log entries visible under Logs tab",{"type":48,"tag":53,"props":6849,"children":6850},{},[6851],{"type":62,"value":6852},"If nothing appears:",{"type":48,"tag":6854,"props":6855,"children":6856},"ol",{},[6857,6870,6875,6901,6906],{"type":48,"tag":97,"props":6858,"children":6859},{},[6860,6862,6868],{"type":62,"value":6861},"Set ",{"type":48,"tag":113,"props":6863,"children":6865},{"className":6864},[],[6866],{"type":62,"value":6867},"options.isDebug = true",{"type":62,"value":6869}," — SDK logs to Logcat",{"type":48,"tag":97,"props":6871,"children":6872},{},[6873],{"type":62,"value":6874},"Verify DSN is correct and matches your Sentry project",{"type":48,"tag":97,"props":6876,"children":6877},{},[6878,6880,6886,6888,6893,6895],{"type":62,"value":6879},"Check that your ",{"type":48,"tag":113,"props":6881,"children":6883},{"className":6882},[],[6884],{"type":62,"value":6885},"Application",{"type":62,"value":6887}," class is registered in ",{"type":48,"tag":113,"props":6889,"children":6891},{"className":6890},[],[6892],{"type":62,"value":4014},{"type":62,"value":6894}," as ",{"type":48,"tag":113,"props":6896,"children":6898},{"className":6897},[],[6899],{"type":62,"value":6900},"android:name",{"type":48,"tag":97,"props":6902,"children":6903},{},[6904],{"type":62,"value":6905},"Confirm the device\u002Femulator has internet connectivity",{"type":48,"tag":97,"props":6907,"children":6908},{},[6909,6911,6917],{"type":62,"value":6910},"For NDK crashes, ensure ",{"type":48,"tag":113,"props":6912,"children":6914},{"className":6913},[],[6915],{"type":62,"value":6916},"isEnableNdk = true",{"type":62,"value":6918}," (default) and build with NDK support",{"type":48,"tag":175,"props":6920,"children":6921},{},[],{"type":48,"tag":86,"props":6923,"children":6925},{"id":6924},"phase-4-cross-link",[6926],{"type":62,"value":6927},"Phase 4: Cross-Link",{"type":48,"tag":53,"props":6929,"children":6930},{},[6931],{"type":62,"value":6932},"After completing Android setup, check for a backend or web frontend missing Sentry coverage:",{"type":48,"tag":190,"props":6934,"children":6936},{"className":192,"code":6935,"language":194,"meta":195,"style":195},"# Adjacent backend directories\nls ..\u002Fbackend ..\u002Fserver ..\u002Fapi 2>\u002Fdev\u002Fnull\ncat ..\u002Fgo.mod 2>\u002Fdev\u002Fnull | head -3\ncat ..\u002Frequirements.txt ..\u002Fpyproject.toml 2>\u002Fdev\u002Fnull | head -5\ncat ..\u002FGemfile 2>\u002Fdev\u002Fnull | head -3\nls ..\u002Fbackend\u002Fpackage.json ..\u002Fserver\u002Fpackage.json 2>\u002Fdev\u002Fnull\n\n# iOS counterpart app\nls ..\u002Fios ..\u002FYourApp-iOS 2>\u002Fdev\u002Fnull\nfind .. -maxdepth 3 -name \"*.xcodeproj\" 2>\u002Fdev\u002Fnull | head -3\n",[6937],{"type":48,"tag":113,"props":6938,"children":6939},{"__ignoreMap":195},[6940,6948,6975,7008,7045,7077,7102,7109,7117,7142],{"type":48,"tag":201,"props":6941,"children":6942},{"class":203,"line":204},[6943],{"type":48,"tag":201,"props":6944,"children":6945},{"style":208},[6946],{"type":62,"value":6947},"# Adjacent backend directories\n",{"type":48,"tag":201,"props":6949,"children":6950},{"class":203,"line":214},[6951,6955,6959,6963,6967,6971],{"type":48,"tag":201,"props":6952,"children":6953},{"style":218},[6954],{"type":62,"value":221},{"type":48,"tag":201,"props":6956,"children":6957},{"style":224},[6958],{"type":62,"value":1458},{"type":48,"tag":201,"props":6960,"children":6961},{"style":224},[6962],{"type":62,"value":1463},{"type":48,"tag":201,"props":6964,"children":6965},{"style":224},[6966],{"type":62,"value":1468},{"type":48,"tag":201,"props":6968,"children":6969},{"style":245},[6970],{"type":62,"value":248},{"type":48,"tag":201,"props":6972,"children":6973},{"style":224},[6974],{"type":62,"value":253},{"type":48,"tag":201,"props":6976,"children":6977},{"class":203,"line":256},[6978,6983,6988,6992,6996,7000,7004],{"type":48,"tag":201,"props":6979,"children":6980},{"style":218},[6981],{"type":62,"value":6982},"cat",{"type":48,"tag":201,"props":6984,"children":6985},{"style":224},[6986],{"type":62,"value":6987}," ..\u002Fgo.mod",{"type":48,"tag":201,"props":6989,"children":6990},{"style":245},[6991],{"type":62,"value":248},{"type":48,"tag":201,"props":6993,"children":6994},{"style":224},[6995],{"type":62,"value":328},{"type":48,"tag":201,"props":6997,"children":6998},{"style":245},[6999],{"type":62,"value":333},{"type":48,"tag":201,"props":7001,"children":7002},{"style":218},[7003],{"type":62,"value":338},{"type":48,"tag":201,"props":7005,"children":7006},{"style":224},[7007],{"type":62,"value":343},{"type":48,"tag":201,"props":7009,"children":7010},{"class":203,"line":265},[7011,7015,7020,7025,7029,7033,7037,7041],{"type":48,"tag":201,"props":7012,"children":7013},{"style":218},[7014],{"type":62,"value":6982},{"type":48,"tag":201,"props":7016,"children":7017},{"style":224},[7018],{"type":62,"value":7019}," ..\u002Frequirements.txt",{"type":48,"tag":201,"props":7021,"children":7022},{"style":224},[7023],{"type":62,"value":7024}," ..\u002Fpyproject.toml",{"type":48,"tag":201,"props":7026,"children":7027},{"style":245},[7028],{"type":62,"value":248},{"type":48,"tag":201,"props":7030,"children":7031},{"style":224},[7032],{"type":62,"value":328},{"type":48,"tag":201,"props":7034,"children":7035},{"style":245},[7036],{"type":62,"value":333},{"type":48,"tag":201,"props":7038,"children":7039},{"style":218},[7040],{"type":62,"value":338},{"type":48,"tag":201,"props":7042,"children":7043},{"style":224},[7044],{"type":62,"value":625},{"type":48,"tag":201,"props":7046,"children":7047},{"class":203,"line":274},[7048,7052,7057,7061,7065,7069,7073],{"type":48,"tag":201,"props":7049,"children":7050},{"style":218},[7051],{"type":62,"value":6982},{"type":48,"tag":201,"props":7053,"children":7054},{"style":224},[7055],{"type":62,"value":7056}," ..\u002FGemfile",{"type":48,"tag":201,"props":7058,"children":7059},{"style":245},[7060],{"type":62,"value":248},{"type":48,"tag":201,"props":7062,"children":7063},{"style":224},[7064],{"type":62,"value":328},{"type":48,"tag":201,"props":7066,"children":7067},{"style":245},[7068],{"type":62,"value":333},{"type":48,"tag":201,"props":7070,"children":7071},{"style":218},[7072],{"type":62,"value":338},{"type":48,"tag":201,"props":7074,"children":7075},{"style":224},[7076],{"type":62,"value":343},{"type":48,"tag":201,"props":7078,"children":7079},{"class":203,"line":346},[7080,7084,7089,7094,7098],{"type":48,"tag":201,"props":7081,"children":7082},{"style":218},[7083],{"type":62,"value":221},{"type":48,"tag":201,"props":7085,"children":7086},{"style":224},[7087],{"type":62,"value":7088}," ..\u002Fbackend\u002Fpackage.json",{"type":48,"tag":201,"props":7090,"children":7091},{"style":224},[7092],{"type":62,"value":7093}," ..\u002Fserver\u002Fpackage.json",{"type":48,"tag":201,"props":7095,"children":7096},{"style":245},[7097],{"type":62,"value":248},{"type":48,"tag":201,"props":7099,"children":7100},{"style":224},[7101],{"type":62,"value":253},{"type":48,"tag":201,"props":7103,"children":7104},{"class":203,"line":401},[7105],{"type":48,"tag":201,"props":7106,"children":7107},{"emptyLinePlaceholder":43},[7108],{"type":62,"value":262},{"type":48,"tag":201,"props":7110,"children":7111},{"class":203,"line":409},[7112],{"type":48,"tag":201,"props":7113,"children":7114},{"style":208},[7115],{"type":62,"value":7116},"# iOS counterpart app\n",{"type":48,"tag":201,"props":7118,"children":7119},{"class":203,"line":418},[7120,7124,7129,7134,7138],{"type":48,"tag":201,"props":7121,"children":7122},{"style":218},[7123],{"type":62,"value":221},{"type":48,"tag":201,"props":7125,"children":7126},{"style":224},[7127],{"type":62,"value":7128}," ..\u002Fios",{"type":48,"tag":201,"props":7130,"children":7131},{"style":224},[7132],{"type":62,"value":7133}," ..\u002FYourApp-iOS",{"type":48,"tag":201,"props":7135,"children":7136},{"style":245},[7137],{"type":62,"value":248},{"type":48,"tag":201,"props":7139,"children":7140},{"style":224},[7141],{"type":62,"value":253},{"type":48,"tag":201,"props":7143,"children":7144},{"class":203,"line":443},[7145,7149,7153,7157,7162,7166,7170,7175,7179,7183,7187,7191,7195],{"type":48,"tag":201,"props":7146,"children":7147},{"style":218},[7148],{"type":62,"value":651},{"type":48,"tag":201,"props":7150,"children":7151},{"style":224},[7152],{"type":62,"value":1489},{"type":48,"tag":201,"props":7154,"children":7155},{"style":224},[7156],{"type":62,"value":1494},{"type":48,"tag":201,"props":7158,"children":7159},{"style":1497},[7160],{"type":62,"value":7161}," 3",{"type":48,"tag":201,"props":7163,"children":7164},{"style":224},[7165],{"type":62,"value":661},{"type":48,"tag":201,"props":7167,"children":7168},{"style":245},[7169],{"type":62,"value":666},{"type":48,"tag":201,"props":7171,"children":7172},{"style":224},[7173],{"type":62,"value":7174},"*.xcodeproj",{"type":48,"tag":201,"props":7176,"children":7177},{"style":245},[7178],{"type":62,"value":676},{"type":48,"tag":201,"props":7180,"children":7181},{"style":245},[7182],{"type":62,"value":248},{"type":48,"tag":201,"props":7184,"children":7185},{"style":224},[7186],{"type":62,"value":328},{"type":48,"tag":201,"props":7188,"children":7189},{"style":245},[7190],{"type":62,"value":333},{"type":48,"tag":201,"props":7192,"children":7193},{"style":218},[7194],{"type":62,"value":338},{"type":48,"tag":201,"props":7196,"children":7197},{"style":224},[7198],{"type":62,"value":343},{"type":48,"tag":53,"props":7200,"children":7201},{},[7202],{"type":62,"value":7203},"If a backend or related platform exists without Sentry, suggest the matching skill:",{"type":48,"tag":1619,"props":7205,"children":7206},{},[7207,7223],{"type":48,"tag":1623,"props":7208,"children":7209},{},[7210],{"type":48,"tag":1627,"props":7211,"children":7212},{},[7213,7218],{"type":48,"tag":1631,"props":7214,"children":7215},{},[7216],{"type":62,"value":7217},"Detected",{"type":48,"tag":1631,"props":7219,"children":7220},{},[7221],{"type":62,"value":7222},"Suggest skill",{"type":48,"tag":1642,"props":7224,"children":7225},{},[7226,7249,7279,7302,7328,7352,7384],{"type":48,"tag":1627,"props":7227,"children":7228},{},[7229,7240],{"type":48,"tag":1649,"props":7230,"children":7231},{},[7232,7234,7239],{"type":62,"value":7233},"Go backend (",{"type":48,"tag":113,"props":7235,"children":7237},{"className":7236},[],[7238],{"type":62,"value":1519},{"type":62,"value":2292},{"type":48,"tag":1649,"props":7241,"children":7242},{},[7243],{"type":48,"tag":113,"props":7244,"children":7246},{"className":7245},[],[7247],{"type":62,"value":7248},"sentry-go-sdk",{"type":48,"tag":1627,"props":7250,"children":7251},{},[7252,7270],{"type":48,"tag":1649,"props":7253,"children":7254},{},[7255,7257,7262,7263,7269],{"type":62,"value":7256},"Python backend (",{"type":48,"tag":113,"props":7258,"children":7260},{"className":7259},[],[7261],{"type":62,"value":1540},{"type":62,"value":120},{"type":48,"tag":113,"props":7264,"children":7266},{"className":7265},[],[7267],{"type":62,"value":7268},"pyproject.toml",{"type":62,"value":2292},{"type":48,"tag":1649,"props":7271,"children":7272},{},[7273],{"type":48,"tag":113,"props":7274,"children":7276},{"className":7275},[],[7277],{"type":62,"value":7278},"sentry-python-sdk",{"type":48,"tag":1627,"props":7280,"children":7281},{},[7282,7293],{"type":48,"tag":1649,"props":7283,"children":7284},{},[7285,7287,7292],{"type":62,"value":7286},"Ruby backend (",{"type":48,"tag":113,"props":7288,"children":7290},{"className":7289},[],[7291],{"type":62,"value":1561},{"type":62,"value":2292},{"type":48,"tag":1649,"props":7294,"children":7295},{},[7296],{"type":48,"tag":113,"props":7297,"children":7299},{"className":7298},[],[7300],{"type":62,"value":7301},"sentry-ruby-sdk",{"type":48,"tag":1627,"props":7303,"children":7304},{},[7305,7310],{"type":48,"tag":1649,"props":7306,"children":7307},{},[7308],{"type":62,"value":7309},"Node.js backend",{"type":48,"tag":1649,"props":7311,"children":7312},{},[7313,7319,7321],{"type":48,"tag":113,"props":7314,"children":7316},{"className":7315},[],[7317],{"type":62,"value":7318},"@sentry\u002Fnode",{"type":62,"value":7320}," — see ",{"type":48,"tag":57,"props":7322,"children":7325},{"href":7323,"rel":7324},"https:\u002F\u002Fdocs.sentry.io\u002Fplatforms\u002Fjavascript\u002Fguides\u002Fexpress\u002F",[168],[7326],{"type":62,"value":7327},"docs.sentry.io\u002Fplatforms\u002Fjavascript\u002Fguides\u002Fexpress\u002F",{"type":48,"tag":1627,"props":7329,"children":7330},{},[7331,7343],{"type":48,"tag":1649,"props":7332,"children":7333},{},[7334,7336,7342],{"type":62,"value":7335},"iOS app (",{"type":48,"tag":113,"props":7337,"children":7339},{"className":7338},[],[7340],{"type":62,"value":7341},".xcodeproj",{"type":62,"value":2292},{"type":48,"tag":1649,"props":7344,"children":7345},{},[7346],{"type":48,"tag":113,"props":7347,"children":7349},{"className":7348},[],[7350],{"type":62,"value":7351},"sentry-cocoa-sdk",{"type":48,"tag":1627,"props":7353,"children":7354},{},[7355,7375],{"type":48,"tag":1649,"props":7356,"children":7357},{},[7358,7360,7366,7368,7374],{"type":62,"value":7359},"React Native (",{"type":48,"tag":113,"props":7361,"children":7363},{"className":7362},[],[7364],{"type":62,"value":7365},"package.json",{"type":62,"value":7367}," with ",{"type":48,"tag":113,"props":7369,"children":7371},{"className":7370},[],[7372],{"type":62,"value":7373},"react-native",{"type":62,"value":2292},{"type":48,"tag":1649,"props":7376,"children":7377},{},[7378],{"type":48,"tag":113,"props":7379,"children":7381},{"className":7380},[],[7382],{"type":62,"value":7383},"sentry-react-native-sdk",{"type":48,"tag":1627,"props":7385,"children":7386},{},[7387,7392],{"type":48,"tag":1649,"props":7388,"children":7389},{},[7390],{"type":62,"value":7391},"React \u002F Next.js web",{"type":48,"tag":1649,"props":7393,"children":7394},{},[7395,7401,7403],{"type":48,"tag":113,"props":7396,"children":7398},{"className":7397},[],[7399],{"type":62,"value":7400},"sentry-react-sdk",{"type":62,"value":7402}," or ",{"type":48,"tag":113,"props":7404,"children":7406},{"className":7405},[],[7407],{"type":62,"value":7408},"sentry-nextjs-sdk",{"type":48,"tag":53,"props":7410,"children":7411},{},[7412,7417,7419,7424],{"type":48,"tag":141,"props":7413,"children":7414},{},[7415],{"type":62,"value":7416},"Distributed tracing setup",{"type":62,"value":7418}," — if the backend skill is added, configure ",{"type":48,"tag":113,"props":7420,"children":7422},{"className":7421},[],[7423],{"type":62,"value":5461},{"type":62,"value":7425}," in Android to propagate trace context to your API:",{"type":48,"tag":190,"props":7427,"children":7429},{"className":2539,"code":7428,"language":2541,"meta":195,"style":195},"options.tracePropagationTargets = listOf(\n    \"api.yourapp.com\",\n    \".*\\\\.yourapp\\\\.com\"\n)\n",[7430],{"type":48,"tag":113,"props":7431,"children":7432},{"__ignoreMap":195},[7433,7441,7449,7457],{"type":48,"tag":201,"props":7434,"children":7435},{"class":203,"line":204},[7436],{"type":48,"tag":201,"props":7437,"children":7438},{},[7439],{"type":62,"value":7440},"options.tracePropagationTargets = listOf(\n",{"type":48,"tag":201,"props":7442,"children":7443},{"class":203,"line":214},[7444],{"type":48,"tag":201,"props":7445,"children":7446},{},[7447],{"type":62,"value":7448},"    \"api.yourapp.com\",\n",{"type":48,"tag":201,"props":7450,"children":7451},{"class":203,"line":256},[7452],{"type":48,"tag":201,"props":7453,"children":7454},{},[7455],{"type":62,"value":7456},"    \".*\\\\.yourapp\\\\.com\"\n",{"type":48,"tag":201,"props":7458,"children":7459},{"class":203,"line":265},[7460],{"type":48,"tag":201,"props":7461,"children":7462},{},[7463],{"type":62,"value":7464},")\n",{"type":48,"tag":53,"props":7466,"children":7467},{},[7468],{"type":62,"value":7469},"This links mobile transactions to backend traces in the Sentry waterfall view.",{"type":48,"tag":175,"props":7471,"children":7472},{},[],{"type":48,"tag":86,"props":7474,"children":7476},{"id":7475},"troubleshooting",[7477],{"type":62,"value":7478},"Troubleshooting",{"type":48,"tag":1619,"props":7480,"children":7481},{},[7482,7498],{"type":48,"tag":1623,"props":7483,"children":7484},{},[7485],{"type":48,"tag":1627,"props":7486,"children":7487},{},[7488,7493],{"type":48,"tag":1631,"props":7489,"children":7490},{},[7491],{"type":62,"value":7492},"Issue",{"type":48,"tag":1631,"props":7494,"children":7495},{},[7496],{"type":62,"value":7497},"Solution",{"type":48,"tag":1642,"props":7499,"children":7500},{},[7501,7521,7554,7587,7621,7647,7667,7695,7714,7749,7772,7809,7830,7858,7884,7908,7935,7963,7983,8009,8038,8087,8115],{"type":48,"tag":1627,"props":7502,"children":7503},{},[7504,7509],{"type":48,"tag":1649,"props":7505,"children":7506},{},[7507],{"type":62,"value":7508},"Events not appearing in Sentry",{"type":48,"tag":1649,"props":7510,"children":7511},{},[7512,7513,7519],{"type":62,"value":6861},{"type":48,"tag":113,"props":7514,"children":7516},{"className":7515},[],[7517],{"type":62,"value":7518},"isDebug = true",{"type":62,"value":7520},", check Logcat for SDK errors; verify DSN is correct and matches your project",{"type":48,"tag":1627,"props":7522,"children":7523},{},[7524,7534],{"type":48,"tag":1649,"props":7525,"children":7526},{},[7527,7532],{"type":48,"tag":113,"props":7528,"children":7530},{"className":7529},[],[7531],{"type":62,"value":1844},{"type":62,"value":7533}," not called",{"type":48,"tag":1649,"props":7535,"children":7536},{},[7537,7539,7545,7547,7552],{"type":62,"value":7538},"Confirm ",{"type":48,"tag":113,"props":7540,"children":7542},{"className":7541},[],[7543],{"type":62,"value":7544},"android:name=\".MyApplication\"",{"type":62,"value":7546}," is set in ",{"type":48,"tag":113,"props":7548,"children":7550},{"className":7549},[],[7551],{"type":62,"value":4014},{"type":62,"value":7553},"; Application class not abstract",{"type":48,"tag":1627,"props":7555,"children":7556},{},[7557,7562],{"type":48,"tag":1649,"props":7558,"children":7559},{},[7560],{"type":62,"value":7561},"Gradle plugin not found",{"type":48,"tag":1649,"props":7563,"children":7564},{},[7565,7567,7572,7574,7580,7582],{"type":62,"value":7566},"Add the plugin to project-level ",{"type":48,"tag":113,"props":7568,"children":7570},{"className":7569},[],[7571],{"type":62,"value":1657},{"type":62,"value":7573}," first, then ",{"type":48,"tag":113,"props":7575,"children":7577},{"className":7576},[],[7578],{"type":62,"value":7579},"apply false",{"type":62,"value":7581},"; verify version ",{"type":48,"tag":113,"props":7583,"children":7585},{"className":7584},[],[7586],{"type":62,"value":161},{"type":48,"tag":1627,"props":7588,"children":7589},{},[7590,7595],{"type":48,"tag":1649,"props":7591,"children":7592},{},[7593],{"type":62,"value":7594},"ProGuard mapping not uploading",{"type":48,"tag":1649,"props":7596,"children":7597},{},[7598,7599,7604,7606,7612,7614,7619],{"type":62,"value":6861},{"type":48,"tag":113,"props":7600,"children":7602},{"className":7601},[],[7603],{"type":62,"value":6410},{"type":62,"value":7605}," env var; ensure ",{"type":48,"tag":113,"props":7607,"children":7609},{"className":7608},[],[7610],{"type":62,"value":7611},"autoUploadProguardMapping = true",{"type":62,"value":7613}," in ",{"type":48,"tag":113,"props":7615,"children":7617},{"className":7616},[],[7618],{"type":62,"value":2772},{"type":62,"value":7620}," block",{"type":48,"tag":1627,"props":7622,"children":7623},{},[7624,7629],{"type":48,"tag":1649,"props":7625,"children":7626},{},[7627],{"type":62,"value":7628},"NDK crashes not captured",{"type":48,"tag":1649,"props":7630,"children":7631},{},[7632,7634,7639,7641],{"type":62,"value":7633},"Verify ",{"type":48,"tag":113,"props":7635,"children":7637},{"className":7636},[],[7638],{"type":62,"value":6916},{"type":62,"value":7640}," (default); ensure project has NDK configured in ",{"type":48,"tag":113,"props":7642,"children":7644},{"className":7643},[],[7645],{"type":62,"value":7646},"android.ndkVersion",{"type":48,"tag":1627,"props":7648,"children":7649},{},[7650,7655],{"type":48,"tag":1649,"props":7651,"children":7652},{},[7653],{"type":62,"value":7654},"ANR reported in debugger",{"type":48,"tag":1649,"props":7656,"children":7657},{},[7658,7659,7665],{"type":62,"value":6861},{"type":48,"tag":113,"props":7660,"children":7662},{"className":7661},[],[7663],{"type":62,"value":7664},"isAnrReportInDebug = false",{"type":62,"value":7666}," (default); ANR watchdog fires when debugger pauses threads",{"type":48,"tag":1627,"props":7668,"children":7669},{},[7670,7675],{"type":48,"tag":1649,"props":7671,"children":7672},{},[7673],{"type":62,"value":7674},"Session replay not recording",{"type":48,"tag":1649,"props":7676,"children":7677},{},[7678,7680,7686,7687,7693],{"type":62,"value":7679},"Requires API 26+; verify ",{"type":48,"tag":113,"props":7681,"children":7683},{"className":7682},[],[7684],{"type":62,"value":7685},"sessionSampleRate > 0",{"type":62,"value":7402},{"type":48,"tag":113,"props":7688,"children":7690},{"className":7689},[],[7691],{"type":62,"value":7692},"onErrorSampleRate > 0",{"type":62,"value":7694},"; check Logcat for replay errors",{"type":48,"tag":1627,"props":7696,"children":7697},{},[7698,7703],{"type":48,"tag":1649,"props":7699,"children":7700},{},[7701],{"type":62,"value":7702},"Session replay shows blank screen",{"type":48,"tag":1649,"props":7704,"children":7705},{},[7706,7708],{"type":62,"value":7707},"PixelCopy (default) requires hardware acceleration; try ",{"type":48,"tag":113,"props":7709,"children":7711},{"className":7710},[],[7712],{"type":62,"value":7713},"SentryReplayOptions.screenshotQuality = CANVAS",{"type":48,"tag":1627,"props":7715,"children":7716},{},[7717,7722],{"type":48,"tag":1649,"props":7718,"children":7719},{},[7720],{"type":62,"value":7721},"Replay masking misaligned",{"type":48,"tag":1649,"props":7723,"children":7724},{},[7725,7727,7733,7734,7740,7742],{"type":62,"value":7726},"Views with ",{"type":48,"tag":113,"props":7728,"children":7730},{"className":7729},[],[7731],{"type":62,"value":7732},"translationX\u002FY",{"type":62,"value":7402},{"type":48,"tag":113,"props":7735,"children":7737},{"className":7736},[],[7738],{"type":62,"value":7739},"clipToPadding=false",{"type":62,"value":7741}," can offset masks; report to ",{"type":48,"tag":57,"props":7743,"children":7746},{"href":7744,"rel":7745},"https:\u002F\u002Fgithub.com\u002Fgetsentry\u002Fsentry-java",[168],[7747],{"type":62,"value":7748},"github.com\u002Fgetsentry\u002Fsentry-java",{"type":48,"tag":1627,"props":7750,"children":7751},{},[7752,7762],{"type":48,"tag":1649,"props":7753,"children":7754},{},[7755,7760],{"type":48,"tag":113,"props":7756,"children":7758},{"className":7757},[],[7759],{"type":62,"value":5291},{"type":62,"value":7761}," not firing",{"type":48,"tag":1649,"props":7763,"children":7764},{},[7765,7770],{"type":48,"tag":113,"props":7766,"children":7768},{"className":7767},[],[7769],{"type":62,"value":5291},{"type":62,"value":7771}," only intercepts managed (Java\u002FKotlin) events; NDK native crashes bypass it",{"type":48,"tag":1627,"props":7773,"children":7774},{},[7775,7780],{"type":48,"tag":1649,"props":7776,"children":7777},{},[7778],{"type":62,"value":7779},"OkHttp spans not appearing",{"type":48,"tag":1649,"props":7781,"children":7782},{},[7783,7785,7791,7793,7799,7801,7807],{"type":62,"value":7784},"Add ",{"type":48,"tag":113,"props":7786,"children":7788},{"className":7787},[],[7789],{"type":62,"value":7790},"SentryOkHttpInterceptor",{"type":62,"value":7792}," to your ",{"type":48,"tag":113,"props":7794,"children":7796},{"className":7795},[],[7797],{"type":62,"value":7798},"OkHttpClient",{"type":62,"value":7800},", or use Gradle plugin ",{"type":48,"tag":113,"props":7802,"children":7804},{"className":7803},[],[7805],{"type":62,"value":7806},"OKHTTP",{"type":62,"value":7808}," bytecode instrumentation",{"type":48,"tag":1627,"props":7810,"children":7811},{},[7812,7817],{"type":48,"tag":1649,"props":7813,"children":7814},{},[7815],{"type":62,"value":7816},"Spans not attached to transaction",{"type":48,"tag":1649,"props":7818,"children":7819},{},[7820,7822,7828],{"type":62,"value":7821},"Ensure ",{"type":48,"tag":113,"props":7823,"children":7825},{"className":7824},[],[7826],{"type":62,"value":7827},"TransactionOptions().setBindToScope(true)",{"type":62,"value":7829}," when starting transaction; child spans look for scope root",{"type":48,"tag":1627,"props":7831,"children":7832},{},[7833,7838],{"type":48,"tag":1649,"props":7834,"children":7835},{},[7836],{"type":62,"value":7837},"Tracing not recording",{"type":48,"tag":1649,"props":7839,"children":7840},{},[7841,7842,7848,7850,7856],{"type":62,"value":7633},{"type":48,"tag":113,"props":7843,"children":7845},{"className":7844},[],[7846],{"type":62,"value":7847},"tracesSampleRate > 0",{"type":62,"value":7849},"; Activity instrumentation requires ",{"type":48,"tag":113,"props":7851,"children":7853},{"className":7852},[],[7854],{"type":62,"value":7855},"isEnableAutoActivityLifecycleTracing = true",{"type":62,"value":7857}," (default)",{"type":48,"tag":1627,"props":7859,"children":7860},{},[7861,7866],{"type":48,"tag":1649,"props":7862,"children":7863},{},[7864],{"type":62,"value":7865},"Continuous profiling not working",{"type":48,"tag":1649,"props":7867,"children":7868},{},[7869,7871,7877,7879],{"type":62,"value":7870},"SDK ≥ 8.7.0 required; API 22+ required; set ",{"type":48,"tag":113,"props":7872,"children":7874},{"className":7873},[],[7875],{"type":62,"value":7876},"profileSessionSampleRate > 0",{"type":62,"value":7878},"; don't also set ",{"type":48,"tag":113,"props":7880,"children":7882},{"className":7881},[],[7883],{"type":62,"value":5685},{"type":48,"tag":1627,"props":7885,"children":7886},{},[7887,7892],{"type":48,"tag":1649,"props":7888,"children":7889},{},[7890],{"type":62,"value":7891},"Both profiling modes set",{"type":48,"tag":1649,"props":7893,"children":7894},{},[7895,7900,7901,7906],{"type":48,"tag":113,"props":7896,"children":7898},{"className":7897},[],[7899],{"type":62,"value":5685},{"type":62,"value":5492},{"type":48,"tag":113,"props":7902,"children":7904},{"className":7903},[],[7905],{"type":62,"value":5652},{"type":62,"value":7907}," are mutually exclusive — use only one",{"type":48,"tag":1627,"props":7909,"children":7910},{},[7911,7916],{"type":48,"tag":1649,"props":7912,"children":7913},{},[7914],{"type":62,"value":7915},"TTFD spans missing",{"type":48,"tag":1649,"props":7917,"children":7918},{},[7919,7920,7926,7928,7933],{"type":62,"value":6861},{"type":48,"tag":113,"props":7921,"children":7923},{"className":7922},[],[7924],{"type":62,"value":7925},"isEnableTimeToFullDisplayTracing = true",{"type":62,"value":7927}," and call ",{"type":48,"tag":113,"props":7929,"children":7931},{"className":7930},[],[7932],{"type":62,"value":5572},{"type":62,"value":7934}," when screen is ready",{"type":48,"tag":1627,"props":7936,"children":7937},{},[7938,7943],{"type":48,"tag":1649,"props":7939,"children":7940},{},[7941],{"type":62,"value":7942},"Kotlin coroutine scope lost",{"type":48,"tag":1649,"props":7944,"children":7945},{},[7946,7947,7953,7955,7961],{"type":62,"value":7784},{"type":48,"tag":113,"props":7948,"children":7950},{"className":7949},[],[7951],{"type":62,"value":7952},"sentry-kotlin-extensions",{"type":62,"value":7954}," dependency; use ",{"type":48,"tag":113,"props":7956,"children":7958},{"className":7957},[],[7959],{"type":62,"value":7960},"Sentry.cloneMainContext()",{"type":62,"value":7962}," to propagate trace context",{"type":48,"tag":1627,"props":7964,"children":7965},{},[7966,7971],{"type":48,"tag":1649,"props":7967,"children":7968},{},[7969],{"type":62,"value":7970},"Release build stack traces unreadable",{"type":48,"tag":1649,"props":7972,"children":7973},{},[7974,7976,7981],{"type":62,"value":7975},"ProGuard mapping not uploaded; confirm Gradle plugin ",{"type":48,"tag":113,"props":7977,"children":7979},{"className":7978},[],[7980],{"type":62,"value":7611},{"type":62,"value":7982}," and auth token set",{"type":48,"tag":1627,"props":7984,"children":7985},{},[7986,7991],{"type":48,"tag":1649,"props":7987,"children":7988},{},[7989],{"type":62,"value":7990},"Source context not showing in Sentry",{"type":48,"tag":1649,"props":7992,"children":7993},{},[7994,7995,8001,8002,8007],{"type":62,"value":6307},{"type":48,"tag":113,"props":7996,"children":7998},{"className":7997},[],[7999],{"type":62,"value":8000},"includeSourceContext = true",{"type":62,"value":7613},{"type":48,"tag":113,"props":8003,"children":8005},{"className":8004},[],[8006],{"type":62,"value":2772},{"type":62,"value":8008}," block (Gradle plugin required)",{"type":48,"tag":1627,"props":8010,"children":8011},{},[8012,8017],{"type":48,"tag":1649,"props":8013,"children":8014},{},[8015],{"type":62,"value":8016},"BOM version conflict",{"type":48,"tag":1649,"props":8018,"children":8019},{},[8020,8022,8028,8030,8036],{"type":62,"value":8021},"Use ",{"type":48,"tag":113,"props":8023,"children":8025},{"className":8024},[],[8026],{"type":62,"value":8027},"implementation(platform(\"io.sentry:sentry-bom:8.33.0\"))",{"type":62,"value":8029}," and omit versions from all other ",{"type":48,"tag":113,"props":8031,"children":8033},{"className":8032},[],[8034],{"type":62,"value":8035},"io.sentry:*",{"type":62,"value":8037}," entries",{"type":48,"tag":1627,"props":8039,"children":8040},{},[8041,8046],{"type":48,"tag":1649,"props":8042,"children":8043},{},[8044],{"type":62,"value":8045},"Version catalog alias unresolved",{"type":48,"tag":1649,"props":8047,"children":8048},{},[8049,8051,8056,8058,8064,8066,8071,8073,8078,8080,8086],{"type":62,"value":8050},"After editing ",{"type":48,"tag":113,"props":8052,"children":8054},{"className":8053},[],[8055],{"type":62,"value":1676},{"type":62,"value":8057},", sync Gradle; alias names use ",{"type":48,"tag":113,"props":8059,"children":8061},{"className":8060},[],[8062],{"type":62,"value":8063},"-",{"type":62,"value":8065}," in TOML and ",{"type":48,"tag":113,"props":8067,"children":8069},{"className":8068},[],[8070],{"type":62,"value":2264},{"type":62,"value":8072}," in build files (e.g., ",{"type":48,"tag":113,"props":8074,"children":8076},{"className":8075},[],[8077],{"type":62,"value":118},{"type":62,"value":8079}," → ",{"type":48,"tag":113,"props":8081,"children":8083},{"className":8082},[],[8084],{"type":62,"value":8085},"libs.sentry.android",{"type":62,"value":2292},{"type":48,"tag":1627,"props":8088,"children":8089},{},[8090,8095],{"type":48,"tag":1649,"props":8091,"children":8092},{},[8093],{"type":62,"value":8094},"Duplicate Sentry version in catalog",{"type":48,"tag":1649,"props":8096,"children":8097},{},[8098,8100,8106,8108,8113],{"type":62,"value":8099},"Reuse the existing ",{"type":48,"tag":113,"props":8101,"children":8103},{"className":8102},[],[8104],{"type":62,"value":8105},"[versions] sentry = \"...\"",{"type":62,"value":8107}," entry; don't add a second key, and don't hardcode the version in ",{"type":48,"tag":113,"props":8109,"children":8111},{"className":8110},[],[8112],{"type":62,"value":2839},{"type":62,"value":8114}," when the catalog is in use",{"type":48,"tag":1627,"props":8116,"children":8117},{},[8118,8128],{"type":48,"tag":1649,"props":8119,"children":8120},{},[8121,8126],{"type":48,"tag":113,"props":8122,"children":8124},{"className":8123},[],[8125],{"type":62,"value":6410},{"type":62,"value":8127}," exposed",{"type":48,"tag":1649,"props":8129,"children":8130},{},[8131,8133,8138],{"type":62,"value":8132},"Auth token is build-time only — never pass it to ",{"type":48,"tag":113,"props":8134,"children":8136},{"className":8135},[],[8137],{"type":62,"value":1844},{"type":62,"value":8139}," or embed in the APK",{"type":48,"tag":8141,"props":8142,"children":8143},"style",{},[8144],{"type":62,"value":8145},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":8147,"total":8323},[8148,8171,8185,8200,8214,8231,8247,8261,8271,8282,8292,8310],{"slug":8149,"name":8149,"fn":8150,"description":8151,"org":8152,"tags":8153,"stars":8168,"repoUrl":8169,"updatedAt":8170},"xcodebuildmcp","build and test Apple apps with XcodeBuildMCP","Official skill for XcodeBuildMCP. Use when doing iOS\u002FmacOS\u002FwatchOS\u002FtvOS\u002FvisionOS work (build, test, run, debug, log, UI automation).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[8154,8155,8158,8161,8162,8165],{"name":25,"slug":26,"type":16},{"name":8156,"slug":8157,"type":16},"iOS","ios",{"name":8159,"slug":8160,"type":16},"macOS","macos",{"name":9,"slug":8,"type":16},{"name":8163,"slug":8164,"type":16},"Testing","testing",{"name":8166,"slug":8167,"type":16},"Xcode","xcode",6176,"https:\u002F\u002Fgithub.com\u002Fgetsentry\u002FXcodeBuildMCP","2026-04-06T18:13:34.8719",{"slug":8172,"name":8172,"fn":8173,"description":8174,"org":8175,"tags":8176,"stars":8168,"repoUrl":8169,"updatedAt":8184},"xcodebuildmcp-cli","build and test Apple apps via CLI","Official skill for the XcodeBuildMCP CLI. Use when doing iOS\u002FmacOS\u002FwatchOS\u002FtvOS\u002FvisionOS work (build, test, run, debug, log, UI automation).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[8177,8180,8181,8182,8183],{"name":8178,"slug":8179,"type":16},"CLI","cli",{"name":8156,"slug":8157,"type":16},{"name":8159,"slug":8160,"type":16},{"name":8163,"slug":8164,"type":16},{"name":8166,"slug":8167,"type":16},"2026-04-06T18:13:36.13414",{"slug":8186,"name":8186,"fn":8187,"description":8188,"org":8189,"tags":8190,"stars":8197,"repoUrl":8198,"updatedAt":8199},"agents-md","maintain project instruction files","Creates and maintains concise AGENTS.md and CLAUDE.md project instruction files. Use when asked to create AGENTS.md, update AGENTS.md, maintain agent docs, set up CLAUDE.md, document repository agent conventions, or keep coding-agent instructions minimal and reference-backed.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[8191,8194],{"name":8192,"slug":8193,"type":16},"Documentation","documentation",{"name":8195,"slug":8196,"type":16},"Engineering","engineering",861,"https:\u002F\u002Fgithub.com\u002Fgetsentry\u002Fskills","2026-05-15T06:16:29.695991",{"slug":8201,"name":8201,"fn":8202,"description":8203,"org":8204,"tags":8205,"stars":8197,"repoUrl":8198,"updatedAt":8213},"blog-writing-guide","write and review engineering blog posts","Write, review, and improve blog posts for the Sentry engineering blog following Sentry's specific writing standards, voice, and quality bar. Use this skill whenever someone asks to write a blog post, draft a technical article, review blog content, improve a draft, write a product announcement, create an engineering deep-dive, or produce any written content destined for the Sentry blog or developer audience. Also trigger when the user mentions \"blog post,\" \"blog draft,\" \"write-up,\" \"announcement post,\" \"engineering post,\" \"deep dive,\" \"postmortem,\" or asks for help with technical writing for Sentry. Even if the user just says \"help me write about [feature\u002Ftopic]\" — if it sounds like it could become a Sentry blog post, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[8206,8209,8210],{"name":8207,"slug":8208,"type":16},"Communications","communications",{"name":9,"slug":8,"type":16},{"name":8211,"slug":8212,"type":16},"Technical Writing","technical-writing","2026-05-15T06:16:33.38217",{"slug":8215,"name":8215,"fn":8216,"description":8217,"org":8218,"tags":8219,"stars":8197,"repoUrl":8198,"updatedAt":8230},"brand-guidelines","write copy following Sentry brand guidelines","Write copy following Sentry brand guidelines. Use when writing UI text, error messages, empty states, onboarding flows, 404 pages, documentation, marketing copy, or any user-facing content. Covers both Plain Speech (default) and Sentry Voice tones.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[8220,8223,8226,8227],{"name":8221,"slug":8222,"type":16},"Branding","branding",{"name":8224,"slug":8225,"type":16},"Content Creation","content-creation",{"name":9,"slug":8,"type":16},{"name":8228,"slug":8229,"type":16},"UX Copy","ux-copy","2026-05-15T06:16:22.395707",{"slug":8232,"name":8232,"fn":8233,"description":8234,"org":8235,"tags":8236,"stars":8197,"repoUrl":8198,"updatedAt":8246},"claude-settings-audit","generate Claude Code settings permissions","Analyze a repository to generate recommended Claude Code settings.json permissions. Use when setting up a new project, auditing existing settings, or determining which read-only bash commands to allow. Detects tech stack, build tools, and monorepo structure.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[8237,8240,8243],{"name":8238,"slug":8239,"type":16},"Claude Code","claude-code",{"name":8241,"slug":8242,"type":16},"Configuration","configuration",{"name":8244,"slug":8245,"type":16},"Security","security","2026-05-15T06:16:44.335977",{"slug":8248,"name":8248,"fn":8249,"description":8250,"org":8251,"tags":8252,"stars":8197,"repoUrl":8198,"updatedAt":8260},"code-review","perform code reviews for Sentry projects","Perform code reviews following Sentry engineering practices. Use when reviewing pull requests, examining code changes, or providing feedback on code quality. Covers security, performance, testing, and design review.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[8253,8255,8256,8259],{"name":8254,"slug":8248,"type":16},"Code Review",{"name":8195,"slug":8196,"type":16},{"name":8257,"slug":8258,"type":16},"Performance","performance",{"name":8244,"slug":8245,"type":16},"2026-05-15T06:16:35.824864",{"slug":8262,"name":8262,"fn":8263,"description":8264,"org":8265,"tags":8266,"stars":8197,"repoUrl":8198,"updatedAt":8270},"code-simplifier","simplify and refine source code","Simplifies and refines code for clarity, consistency, and maintainability while preserving all functionality. Use when asked to \"simplify code\", \"clean up code\", \"refactor for clarity\", \"improve readability\", or review recently modified code for elegance. Focuses on project-specific best practices.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[8267],{"name":8268,"slug":8269,"type":16},"Code Analysis","code-analysis","2026-05-15T06:16:32.127981",{"slug":8272,"name":8272,"fn":8273,"description":8274,"org":8275,"tags":8276,"stars":8197,"repoUrl":8198,"updatedAt":8281},"commit","create commits with Sentry conventions","Use for every request to commit changes or draft a commit message. Creates Sentry-style conventional commits with issue references.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[8277,8280],{"name":8278,"slug":8279,"type":16},"Git","git",{"name":9,"slug":8,"type":16},"2026-07-18T05:15:10.723937",{"slug":8283,"name":8283,"fn":8284,"description":8285,"org":8286,"tags":8287,"stars":8197,"repoUrl":8198,"updatedAt":8291},"create-branch","create git branches for Sentry workflows","Create a git branch following Sentry naming conventions. Use when asked to \"create a branch\", \"new branch\", \"start a branch\", \"make a branch\", \"switch to a new branch\", or when starting new work on the default branch.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[8288,8289,8290],{"name":8195,"slug":8196,"type":16},{"name":8278,"slug":8279,"type":16},{"name":9,"slug":8,"type":16},"2026-05-15T06:16:39.458431",{"slug":8293,"name":8293,"fn":8294,"description":8295,"org":8296,"tags":8297,"stars":8197,"repoUrl":8198,"updatedAt":8309},"django-access-review","review Django access control and IDOR","Django access control and IDOR security review. Use when reviewing Django views, DRF viewsets, ORM queries, or any Python\u002FDjango code handling user authorization. Trigger keywords: \"IDOR\", \"access control\", \"authorization\", \"Django permissions\", \"object permissions\", \"tenant isolation\", \"broken access\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[8298,8301,8302,8305,8308],{"name":8299,"slug":8300,"type":16},"Access Control","access-control",{"name":8268,"slug":8269,"type":16},{"name":8303,"slug":8304,"type":16},"Django","django",{"name":8306,"slug":8307,"type":16},"Python","python",{"name":8244,"slug":8245,"type":16},"2026-05-15T06:16:43.098698",{"slug":8311,"name":8311,"fn":8312,"description":8313,"org":8314,"tags":8315,"stars":8197,"repoUrl":8198,"updatedAt":8322},"django-perf-review","review and optimize Django performance","Django performance code review. Use when asked to \"review Django performance\", \"find N+1 queries\", \"optimize Django\", \"check queryset performance\", \"database performance\", \"Django ORM issues\", or audit Django code for performance problems.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[8316,8317,8320,8321],{"name":8254,"slug":8248,"type":16},{"name":8318,"slug":8319,"type":16},"Database","database",{"name":8303,"slug":8304,"type":16},{"name":8257,"slug":8258,"type":16},"2026-05-15T06:16:24.832813",88,{"items":8325,"total":827},[8326,8334,8349,8365,8376,8390,8405],{"slug":4,"name":4,"fn":5,"description":6,"org":8327,"tags":8328,"stars":27,"repoUrl":28,"updatedAt":29},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[8329,8330,8331,8332,8333],{"name":18,"slug":19,"type":16},{"name":25,"slug":26,"type":16},{"name":14,"slug":15,"type":16},{"name":21,"slug":22,"type":16},{"name":9,"slug":8,"type":16},{"slug":8335,"name":8335,"fn":8336,"description":8337,"org":8338,"tags":8339,"stars":27,"repoUrl":28,"updatedAt":8348},"sentry-browser-sdk","setup Sentry error monitoring for browser applications","Full Sentry SDK setup for browser JavaScript. Use when asked to \"add Sentry to a website\", \"install @sentry\u002Fbrowser\", or configure error monitoring, tracing, session replay, or logging for vanilla JavaScript, jQuery, static sites, or WordPress.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[8340,8341,8344,8347],{"name":25,"slug":26,"type":16},{"name":8342,"slug":8343,"type":16},"JavaScript","javascript",{"name":8345,"slug":8346,"type":16},"Monitoring","monitoring",{"name":9,"slug":8,"type":16},"2026-07-18T05:47:44.437436",{"slug":8350,"name":8350,"fn":8351,"description":8352,"org":8353,"tags":8354,"stars":27,"repoUrl":28,"updatedAt":8364},"sentry-cloudflare-sdk","setup Sentry monitoring for Cloudflare","Full Sentry SDK setup for Cloudflare Workers and Pages. Use when asked to \"add Sentry to Cloudflare Workers\", \"install @sentry\u002Fcloudflare\", or configure error monitoring, tracing, logging, crons, or AI monitoring for Cloudflare Workers, Pages, Durable Objects, Queues, Workflows, or Hono on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[8355,8358,8361,8362,8363],{"name":8356,"slug":8357,"type":16},"Cloudflare","cloudflare",{"name":8359,"slug":8360,"type":16},"Edge Functions","edge-functions",{"name":8345,"slug":8346,"type":16},{"name":14,"slug":15,"type":16},{"name":9,"slug":8,"type":16},"2026-07-11T05:53:25.361175",{"slug":7351,"name":7351,"fn":8366,"description":8367,"org":8368,"tags":8369,"stars":27,"repoUrl":28,"updatedAt":8375},"integrate Sentry SDK into Apple applications","Full Sentry SDK setup for Apple platforms (iOS, macOS, tvOS, watchOS, visionOS). Use when asked to \"add Sentry to iOS\", \"add Sentry to Swift\", \"install sentry-cocoa\", or configure error monitoring, tracing, profiling, session replay, logging, or metrics for Apple applications. Supports SwiftUI and UIKit.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[8370,8371,8372,8373,8374],{"name":8156,"slug":8157,"type":16},{"name":8159,"slug":8160,"type":16},{"name":8345,"slug":8346,"type":16},{"name":14,"slug":15,"type":16},{"name":9,"slug":8,"type":16},"2026-07-11T05:52:57.042493",{"slug":8377,"name":8377,"fn":8378,"description":8379,"org":8380,"tags":8381,"stars":27,"repoUrl":28,"updatedAt":8389},"sentry-dotnet-sdk","setup Sentry SDK for .NET","Full Sentry SDK setup for .NET. Use when asked to \"add Sentry to .NET\", \"install Sentry for C#\", or configure error monitoring, tracing, profiling, logging, or crons for ASP.NET Core, MAUI, WPF, WinForms, Blazor, Azure Functions, or any other .NET application.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[8382,8385,8386,8387,8388],{"name":8383,"slug":8384,"type":16},".NET","net",{"name":25,"slug":26,"type":16},{"name":14,"slug":15,"type":16},{"name":21,"slug":22,"type":16},{"name":9,"slug":8,"type":16},"2026-07-12T06:08:33.793148",{"slug":8391,"name":8391,"fn":8392,"description":8393,"org":8394,"tags":8395,"stars":27,"repoUrl":28,"updatedAt":8404},"sentry-elixir-sdk","setup Sentry SDK for Elixir","Full Sentry SDK setup for Elixir. Use when asked to \"add Sentry to Elixir\", \"install sentry for Elixir\", or configure error monitoring, tracing, logging, or crons for Elixir, Phoenix, or Plug applications. Supports Phoenix, Plug, LiveView, Oban, and Quantum.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[8396,8399,8402,8403],{"name":8397,"slug":8398,"type":16},"Backend","backend",{"name":8400,"slug":8401,"type":16},"Elixir","elixir",{"name":14,"slug":15,"type":16},{"name":9,"slug":8,"type":16},"2026-07-11T05:53:11.69581",{"slug":8406,"name":8406,"fn":8407,"description":8408,"org":8409,"tags":8410,"stars":27,"repoUrl":28,"updatedAt":8417},"sentry-fix-issues","fix production issues with Sentry","Find and fix issues from Sentry using MCP. Use when asked to fix Sentry errors, debug production issues, investigate exceptions, or resolve bugs reported in Sentry. Methodically analyzes stack traces, breadcrumbs, traces, and context to identify root causes.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[8411,8412,8415,8416],{"name":25,"slug":26,"type":16},{"name":8413,"slug":8414,"type":16},"Incident Response","incident-response",{"name":14,"slug":15,"type":16},{"name":9,"slug":8,"type":16},"2026-07-12T06:08:35.550824"]