Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计通过

sentry-android-sdkSentry android SDK 搜索

Agent Skill

sentry-android-sdk 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

242

周安装

10

GitHub Stars

155

下载量

79
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:sentry-android-sdk(Sentry android SDK 搜索)
来源仓库:https://github.com/getsentry/sentry-for-claude
仓库路径:skills/sentry-android-sdk
安装命令:
npx skills add https://github.com/getsentry/sentry-for-claude --skill sentry-android-sdk
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/getsentry/sentry-for-claude --skill sentry-android-sdk

简介

sentry-android-sdk 用于查找、检索和筛选相关信息,适合快速定位候选结果。

  • 适用于需要根据关键词或任务场景从来源线索中筛选信息的场景。
  • 通过 npx skills add 命令安装指定 GitHub 仓库中的技能模块。
  • 安装前需确认权限范围和维护状态,注意可能触发联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

All Skills > SDK Setup > Android SDK

Sentry Android SDK

Opinionated wizard that scans your Android project and guides you through complete Sentry setup — error monitoring, tracing, profiling, session replay, logging, and more.

Invoke This Skill When

  • User asks to "add Sentry to Android" or "set up Sentry" in an Android app
  • User wants error monitoring, crash reporting, ANR detection, tracing, profiling, session replay, or logging in Android
  • User mentions sentry-android, io.sentry:sentry-android, mobile crash tracking, or Sentry for Kotlin/Java Android
  • User wants to monitor native (NDK) crashes, application not responding (ANR) events, or app startup performance
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). Always verify against docs.sentry.io/platforms/android/ before implementing.

Phase 1: Detect

Run these commands to understand the project before making any recommendations:

# Detect project structure and build system
ls build.gradle build.gradle.kts settings.gradle settings.gradle.kts 2>/dev/null

# Check AGP version and existing Sentry
grep -r '"com.android.application"' build.gradle* app/build.gradle* 2>/dev/null | head -3
grep -ri sentry build.gradle* app/build.gradle* 2>/dev/null | head -10

# Check app-level build file (Groovy vs KTS)
ls app/build.gradle app/build.gradle.kts 2>/dev/null

# Detect Gradle version catalog (libs.versions.toml) — modern AGP projects
ls gradle/libs.versions.toml 2>/dev/null

# Check for existing Sentry entries in the version catalog
grep -iE 'sentry|io\.sentry' gradle/libs.versions.toml 2>/dev/null | head -10

# Check if build files reference the catalog (alias/libs.* usage)
grep -E 'alias\(libs\.|libs\.[a-zA-Z]' build.gradle build.gradle.kts app/build.gradle app/build.gradle.kts 2>/dev/null | head -5

# Detect Kotlin vs Java
find app/src/main -name "*.kt" 2>/dev/null | head -3
find app/src/main -name "*.java" 2>/dev/null | head -3

# Check minSdk, targetSdk
grep -E 'minSdk|targetSdk|compileSdk|minSdkVersion|targetSdkVersion' app/build.gradle app/build.gradle.kts 2>/dev/null | head -6

# Detect Jetpack Compose
grep -E 'compose|androidx.compose' app/build.gradle app/build.gradle.kts 2>/dev/null | head -5

# Detect OkHttp (popular HTTP client — has dedicated integration)
grep -E 'okhttp|retrofit' app/build.gradle app/build.gradle.kts 2>/dev/null | head -3

# Detect Room or SQLite
grep -E 'androidx.room|androidx.sqlite' app/build.gradle app/build.gradle.kts 2>/dev/null | head -3

# Detect Timber (logging library)
grep -E 'timber' app/build.gradle app/build.gradle.kts 2>/dev/null | head -3

# Detect Jetpack Navigation
grep -E 'androidx.navigation' app/build.gradle app/build.gradle.kts 2>/dev/null | head -3

# Detect Apollo (GraphQL)
grep -E 'apollo' app/build.gradle app/build.gradle.kts 2>/dev/null | head -3

# Check existing Sentry initialization
grep -r "SentryAndroid.init\|io.sentry.Sentry" app/src/ 2>/dev/null | head -5

# Check Application class
find app/src/main -name "*.kt" -o -name "*.java" 2>/dev/null | xargs grep -l "Application()" 2>/dev/null | head -3

# Adjacent backend (for cross-linking)
ls ../backend ../server ../api 2>/dev/null
find .. -maxdepth 2 \( -name "go.mod" -o -name "requirements.txt" -o -name "Gemfile" \) 2>/dev/null | grep -v node_modules | head -5

What to determine:

QuestionImpact
build.gradle.kts present?Use Kotlin DSL syntax in all examples
gradle/libs.versions.toml present?Add Sentry to the version catalog; reference via libs.* in build files
Catalog already has sentry entries?Reuse the existing version ref; don't duplicate or hardcode versions
minSdk < 26?Note Session Replay requires API 26+ — silent no-op below that
Compose detected?Recommend sentry-compose-android and Compose-specific masking
OkHttp present?Recommend sentry-okhttp interceptor or Gradle plugin bytecode auto-instrumentation
Room/SQLite present?Recommend sentry-android-sqlite or plugin bytecode instrumentation
Timber present?Recommend sentry-android-timber integration
Jetpack Navigation?Recommend sentry-android-navigation for screen tracking
Already has SentryAndroid.init()?Skip install, jump to feature config
Application subclass exists?That's where SentryAndroid.init() goes

Phase 2: Recommend

Present a concrete recommendation based on what you found. Don't ask open-ended questions — lead with a proposal:

Recommended (core coverage — always set up these):

  • Error Monitoring — captures uncaught exceptions, ANRs, and native NDK crashes automatically
  • Tracing — auto-instruments Activity lifecycle, app start, HTTP requests, and database queries
  • Session Replay — records screen captures and user interactions for debugging (API 26+)

Optional (enhanced observability):

  • Profiling — continuous UI profiling (recommended) or transaction-based sampling
  • Logging — structured logs via Sentry.logger(), with optional Timber bridge
  • User Feedback — collect user-submitted bug reports from inside the app

Recommendation logic:

FeatureRecommend when...
Error MonitoringAlways — non-negotiable baseline for any Android app
TracingAlways for Android — app start time, Activity lifecycle, network latency matter
Session ReplayUser-facing production app on API 26+; visual debugging of user issues
ProfilingPerformance-sensitive apps, startup time investigations, production perf analysis
LoggingApp uses structured logging or you want log-to-trace correlation in Sentry
User FeedbackBeta or customer-facing app where you want user-submitted bug reports

Propose: *"For your [Kotlin / Java] Android app (minSdk X), I recommend setting up Error Monitoring + Tracing + Session Replay. Want me to also add Profiling and Logging?"*


Phase 3: Guide

Determine Your Setup Path

Project typeRecommended setupComplexity
New project, no existing SentryGradle plugin (recommended)Low — plugin handles most config
Existing project, no SentryGradle plugin or manual initMedium — add dependency + Application class
Manual full controlSentryAndroid.init() in ApplicationMedium — explicit config, most flexible

Option 1: Wizard (Recommended)

You need to run this yourself — the wizard opens a browser for login and requires interactive input that the agent can't handle. Copy-paste into your terminal: `` npx @sentry/wizard@latest -i android `` It handles login, org/project selection, Gradle plugin setup, dependency installation, DSN configuration, and ProGuard/R8 mapping upload. Once it finishes, come back and skip to Verification.

If the user skips the wizard, proceed with Option 2 (Manual Setup) below.


Option 2: Manual Setup

Using a Gradle Version Catalog (gradle/libs.versions.toml)

If Phase 1 detected gradle/libs.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.

Step 1 — Add entries to gradle/libs.versions.toml

[versions]
sentry = "8.33.0"
sentryGradlePlugin = "6.1.0"

[libraries]
sentry-android = { module = "io.sentry:sentry-android", version.ref = "sentry" }
sentry-bom = { module = "io.sentry:sentry-bom", version.ref = "sentry" }
# Optional integrations — add only the ones your project uses:
sentry-android-timber = { module = "io.sentry:sentry-android-timber" }
sentry-android-fragment = { module = "io.sentry:sentry-android-fragment" }
sentry-compose-android = { module = "io.sentry:sentry-compose-android" }
sentry-android-navigation = { module = "io.sentry:sentry-android-navigation" }
sentry-okhttp = { module = "io.sentry:sentry-okhttp" }
sentry-android-sqlite = { module = "io.sentry:sentry-android-sqlite" }
sentry-kotlin-extensions = { module = "io.sentry:sentry-kotlin-extensions" }

[plugins]
sentry-android-gradle = { id = "io.sentry.android.gradle", version.ref = "sentryGradlePlugin" }
Note: Optional integration entries omit version.ref — their versions come from the BOM at resolution time. Only sentry-bom needs the version ref. If the catalog already defines a sentry version, reuse it instead of adding a duplicate entry.

Step 2 — Reference the catalog from build.gradle[.kts]

Project-level build.gradle.kts:

plugins {
    alias(libs.plugins.sentry.android.gradle) apply false
}

App-level app/build.gradle.kts:

plugins {
    id("com.android.application")
    alias(libs.plugins.sentry.android.gradle)
}

dependencies {
    implementation(platform(libs.sentry.bom))
    implementation(libs.sentry.android)
    // implementation(libs.sentry.okhttp)
    // implementation(libs.sentry.compose.android)
}

Groovy DSL (app/build.gradle) equivalent:

plugins {
    id "com.android.application"
    alias libs.plugins.sentry.android.gradle
}

dependencies {
    implementation platform(libs.sentry.bom)
    implementation libs.sentry.android
}

Then 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.


Path A: Gradle Plugin (Recommended)

The Sentry Gradle plugin is the easiest setup path. It:

  • Uploads ProGuard/R8 mapping files automatically on release builds
  • Injects source context into stack frames
  • Optionally instruments OkHttp, Room/SQLite, File I/O, Compose navigation, and android.util.Log via bytecode transforms (zero source changes)

Step 1 — Add the plugin to build.gradle[.kts] (project-level)

Groovy DSL (build.gradle):

plugins {
    id "io.sentry.android.gradle" version "6.1.0" apply false
}

Kotlin DSL (build.gradle.kts):

plugins {
    id("io.sentry.android.gradle") version "6.1.0" apply false
}

Step 2 — Apply plugin + add dependencies in app/build.gradle[.kts]

Groovy DSL:

plugins {
    id "com.android.application"
    id "io.sentry.android.gradle"
}

android {
    // ...
}

dependencies {
    // Use BOM for consistent versions across sentry modules
    implementation platform("io.sentry:sentry-bom:8.33.0")
    implementation "io.sentry:sentry-android"

    // Optional integrations (add what's relevant):
    // implementation "io.sentry:sentry-android-timber"     // Timber bridge
    // implementation "io.sentry:sentry-android-fragment"   // Fragment lifecycle tracing
    // implementation "io.sentry:sentry-compose-android"    // Jetpack Compose support
    // implementation "io.sentry:sentry-android-navigation"  // Jetpack Navigation
    // implementation "io.sentry:sentry-okhttp"             // OkHttp interceptor
    // implementation "io.sentry:sentry-android-sqlite"     // Room/SQLite tracing
    // implementation "io.sentry:sentry-kotlin-extensions"  // Coroutine context propagation
}

sentry {
    org = "YOUR_ORG_SLUG"
    projectName = "YOUR_PROJECT_SLUG"
    authToken = System.getenv("SENTRY_AUTH_TOKEN")

    // Enable auto-instrumentation via bytecode transforms (no source changes needed)
    tracingInstrumentation {
        enabled = true
        features = [InstrumentationFeature.DATABASE, InstrumentationFeature.FILE_IO,
                    InstrumentationFeature.OKHTTP, InstrumentationFeature.COMPOSE]
    }

    // Upload ProGuard mapping and source context on release
    autoUploadProguardMapping = true
    includeSourceContext = true
}

Kotlin DSL (app/build.gradle.kts):

plugins {
    id("com.android.application")
    id("io.sentry.android.gradle")
}

dependencies {
    implementation(platform("io.sentry:sentry-bom:8.33.0"))
    implementation("io.sentry:sentry-android")

    // Optional integrations:
    // implementation("io.sentry:sentry-android-timber")
    // implementation("io.sentry:sentry-android-fragment")
    // implementation("io.sentry:sentry-compose-android")
    // implementation("io.sentry:sentry-android-navigation")
    // implementation("io.sentry:sentry-okhttp")
    // implementation("io.sentry:sentry-android-sqlite")
    // implementation("io.sentry:sentry-kotlin-extensions")
}

sentry {
    org = "YOUR_ORG_SLUG"
    projectName = "YOUR_PROJECT_SLUG"
    authToken = System.getenv("SENTRY_AUTH_TOKEN")

    tracingInstrumentation {
        enabled = true
        features = setOf(
            InstrumentationFeature.DATABASE,
            InstrumentationFeature.FILE_IO,
            InstrumentationFeature.OKHTTP,
            InstrumentationFeature.COMPOSE,
        )
    }

    autoUploadProguardMapping = true
    includeSourceContext = true
}

Step 3 — Initialize Sentry in your Application class

If you don't have an Application subclass, create one:

// MyApplication.kt
import android.app.Application
import io.sentry.SentryLevel
import io.sentry.android.core.SentryAndroid
import io.sentry.android.replay.SentryReplayOptions

class MyApplication : Application() {
    override fun onCreate() {
        super.onCreate()

        SentryAndroid.init(this) { options ->
            options.dsn = "YOUR_SENTRY_DSN"

            // Tracing — lower to 0.1–0.2 in high-traffic production
            options.tracesSampleRate = 1.0

            // Profiling — use continuous UI profiling (recommended, SDK ≥ 8.7.0)
            options.profileSessionSampleRate = 1.0

            // Session Replay (API 26+ only; silent no-op below API 26)
            options.sessionReplay.sessionSampleRate = 0.1    // 10% of all sessions
            options.sessionReplay.onErrorSampleRate = 1.0    // 100% on error

            // Structured logging
            options.logs.isEnabled = true

            // Environment
            options.environment = BuildConfig.BUILD_TYPE
        }
    }
}

Java equivalent:

// MyApplication.java
import android.app.Application;
import io.sentry.android.core.SentryAndroid;

public class MyApplication extends Application {
    @Override
    public void onCreate() {
        super.onCreate();

        SentryAndroid.init(this, options -> {
            options.setDsn("YOUR_SENTRY_DSN");
            options.setTracesSampleRate(1.0);
            options.setProfileSessionSampleRate(1.0);
            options.getSessionReplay().setSessionSampleRate(0.1);
            options.getSessionReplay().setOnErrorSampleRate(1.0);
            options.getLogs().setEnabled(true);
            options.setEnvironment(BuildConfig.BUILD_TYPE);
        });
    }
}

Step 4 — Register Application in AndroidManifest.xml

<application
    android:name=".MyApplication"
    ... >

Path B: Manual Setup (No Gradle Plugin)

Use this if you can't use the Gradle plugin (e.g., non-standard build setups).

Step 1 — Add dependency in app/build.gradle[.kts]

dependencies {
    implementation(platform("io.sentry:sentry-bom:8.33.0"))
    implementation("io.sentry:sentry-android")
}

Step 2 — Initialize in Application class (same as Path A, Step 3)

Step 3 — Configure ProGuard/R8 manually

The Sentry SDK ships a ProGuard rules file automatically. For manual mapping upload, install sentry-cli and add to your CI:

sentry-cli releases files "my-app@1.0.0+42" upload-proguard \
  --org YOUR_ORG --project YOUR_PROJECT \
  app/build/outputs/mapping/release/mapping.txt

Quick Reference: Full-Featured SentryAndroid.init()

SentryAndroid.init(this) { options ->
    options.dsn = "YOUR_SENTRY_DSN"

    // Environment and release
    options.environment = BuildConfig.BUILD_TYPE     // "debug", "release", etc.
    options.release = "${BuildConfig.APPLICATION_ID}@${BuildConfig.VERSION_NAME}+${BuildConfig.VERSION_CODE}"

    // Tracing — sample 100% in dev, lower to 10–20% in production
    options.tracesSampleRate = 1.0

    // Continuous UI profiling (recommended over transaction-based)
    options.profileSessionSampleRate = 1.0

    // Session Replay (API 26+; silent no-op on API 21–25)
    options.sessionReplay.sessionSampleRate = 0.1
    options.sessionReplay.onErrorSampleRate = 1.0
    options.sessionReplay.maskAllText = true         // mask text for privacy
    options.sessionReplay.maskAllImages = true       // mask images for privacy

    // Structured logging
    options.logs.isEnabled = true

    // Error enrichment
    options.isAttachScreenshot = true                // capture screenshot on error
    options.isAttachViewHierarchy = true             // attach view hierarchy JSON

    // ANR detection (5s default; watchdog + ApplicationExitInfo API 30+)
    options.isAnrEnabled = true

    // NDK native crash handling (enabled by default)
    options.isEnableNdk = true

    // Send PII: IP address, user data
    options.sendDefaultPii = true

    // Trace propagation (backend distributed tracing)
    options.tracePropagationTargets = listOf("api.yourapp.com", ".*\\.yourapp\\.com")

    // Verbose logging — disable in production
    options.isDebug = BuildConfig.DEBUG
}

For Each Agreed Feature

Walk through features one at a time. Load the reference file for each, follow its steps, then verify before moving on:

FeatureReferenceLoad when...
Error Monitoring${SKILL_ROOT}/references/error-monitoring.mdAlways (baseline)
Tracing & Performance${SKILL_ROOT}/references/tracing.mdAlways for Android (Activity lifecycle, network)
Profiling${SKILL_ROOT}/references/profiling.mdPerformance-sensitive production apps
Session Replay${SKILL_ROOT}/references/session-replay.mdUser-facing apps (API 26+)
Logging${SKILL_ROOT}/references/logging.mdStructured logging / log-to-trace correlation
Metrics${SKILL_ROOT}/references/metrics.mdCustom metric tracking (Beta, SDK ≥ 8.30.0)
Crons${SKILL_ROOT}/references/crons.mdScheduled jobs, WorkManager check-ins

For each feature: Read ${SKILL_ROOT}/references/<feature>.md, follow steps exactly, verify it works.


Integration Reference

Built-in (Auto-Enabled)

These integrations activate automatically when SentryAndroid.init() is called:

IntegrationWhat it does
UncaughtExceptionHandlerIntegrationCaptures all uncaught Java/Kotlin exceptions
AnrIntegrationANR detection via watchdog thread (5s) + ApplicationExitInfo (API 30+)
NdkIntegrationNative (C/C++) crash capture via sentry-native
ActivityLifecycleIntegrationAuto-instruments Activity create/resume/pause for TTID/TTFD
AppStartMetricsMeasures cold/warm/hot app start time
NetworkBreadcrumbsIntegrationRecords connectivity changes as breadcrumbs
SystemEventsBreadcrumbsIntegrationRecords battery, screen on/off, etc.
AppLifecycleIntegrationRecords foreground/background transitions
UserInteractionIntegrationBreadcrumbs for taps, swipes, input events
CurrentActivityIntegrationTracks active Activity for context

Optional Integrations

Add the artifact to your dependencies {} block (versions managed by BOM):

IntegrationArtifactWhen to add
Timberio.sentry:sentry-android-timberApp uses Timber for logging
Fragmentio.sentry:sentry-android-fragmentApp uses Jetpack Fragments (lifecycle tracing)
Composeio.sentry:sentry-compose-androidApp uses Jetpack Compose (navigation + masking)
Navigationio.sentry:sentry-android-navigationApp uses Jetpack Navigation Component
OkHttpio.sentry:sentry-okhttpApp uses OkHttp or Retrofit
Room/SQLiteio.sentry:sentry-android-sqliteApp uses Room or raw SQLite
Apollo 3io.sentry:sentry-apollo-3App uses Apollo GraphQL v3
Apollo 4io.sentry:sentry-apollo-4App uses Apollo GraphQL v4
Kotlin Extensionsio.sentry:sentry-kotlin-extensionsKotlin coroutines context propagation
Ktor Clientio.sentry:sentry-ktor-clientApp uses Ktor HTTP client
LaunchDarklyio.sentry:sentry-launchdarkly-androidApp uses LaunchDarkly feature flags

Gradle Plugin Bytecode Instrumentation

The plugin can inject instrumentation automatically (no source changes):

FeatureInstrumentsEnable via
DATABASERoom DAO, SupportSQLiteOpenHelpertracingInstrumentation.features
FILE_IOFileInputStream, FileOutputStreamtracingInstrumentation.features
OKHTTPOkHttpClient.Builder automaticallytracingInstrumentation.features
COMPOSENavHostController auto-instrumentationtracingInstrumentation.features
LOGCATandroid.util.Log capturingtracingInstrumentation.features

Configuration Reference

Core SentryOptions (via SentryAndroid.init)

OptionTypeDefaultPurpose
dsnStringRequired. Project DSN; SDK silently disabled if empty
environmentStringe.g., "production", "staging". Env: SENTRY_ENVIRONMENT
releaseStringApp version, e.g., "my-app@1.0.0+42". Env: SENTRY_RELEASE
distStringBuild variant / distribution identifier
sendDefaultPiiBooleanfalseInclude PII: IP address, user data
sampleRateDouble1.0Error event sampling (0.0–1.0)
maxBreadcrumbsInt100Max breadcrumbs per event
isAttachStacktraceBooleantrueAuto-attach stack traces to message events
isAttachScreenshotBooleanfalseCapture screenshot on error
isAttachViewHierarchyBooleanfalseAttach JSON view hierarchy as attachment
isDebugBooleanfalseVerbose SDK output. Never use in production
isEnabledBooleantrueDisable SDK entirely (e.g., for testing)
beforeSendSentryOptions.BeforeSendCallbackModify or drop error events before sending
beforeBreadcrumbSentryOptions.BeforeBreadcrumbCallbackFilter breadcrumbs before storage

Tracing Options

OptionTypeDefaultPurpose
tracesSampleRateDouble0.0Transaction sample rate (0–1). Use 1.0 in dev
tracesSamplerTracesSamplerCallbackPer-transaction sampling; overrides tracesSampleRate
tracePropagationTargetsList<String>[".*"]Hosts/URLs to receive sentry-trace and baggage headers
isEnableAutoActivityLifecycleTracingBooleantrueAuto-instrument Activity lifecycle
isEnableTimeToFullDisplayTracingBooleanfalseTTFD spans (requires Sentry.reportFullyDisplayed())
isEnableUserInteractionTracingBooleanfalseAuto-instrument user gestures as transactions

Profiling Options

OptionTypeDefaultPurpose
profileSessionSampleRateDouble0.0Continuous profiling sample rate (SDK ≥ 8.7.0, API 22+)
profilesSampleRateDouble0.0Legacy transaction profiling rate (mutually exclusive with continuous)
isProfilingStartOnAppStartBooleanfalseAuto-start profiling session on app launch

ANR Options

OptionTypeDefaultPurpose
isAnrEnabledBooleantrueEnable ANR watchdog thread
anrTimeoutIntervalMillisLong5000Milliseconds before reporting ANR
isAnrReportInDebugBooleanfalseReport ANRs in debug builds (noisy in debugger)

NDK Options

OptionTypeDefaultPurpose
isEnableNdkBooleantrueEnable native crash capture via sentry-native
isEnableScopeSyncBooleantrueSync Java scope (user, tags) to NDK layer
isEnableTombstoneFetchJobBooleantrueFetch NDK tombstone files for enrichment

Session Replay Options (options.sessionReplay)

OptionTypeDefaultPurpose
sessionSampleRateDouble0.0Fraction of all sessions to record
onErrorSampleRateDouble0.0Fraction of error sessions to record
maskAllTextBooleantrueMask all text in replays
maskAllImagesBooleantrueMask all images in replays
qualitySentryReplayQualityMEDIUMVideo quality: LOW, MEDIUM, HIGH

Logging Options (options.logs)

OptionTypeDefaultPurpose
isEnabledBooleanfalseEnable Sentry.logger() API (SDK ≥ 8.12.0)
setBeforeSendBeforeSendLogCallbackFilter/modify log entries before sending

Environment Variables

VariablePurposeNotes
SENTRY_DSNData Source NameSet in CI; SDK reads from environment at init
SENTRY_AUTH_TOKENUpload ProGuard mappings and source contextNever commit — use CI/CD secrets
SENTRY_ORGOrganization slugUsed by Gradle plugin sentry.org
SENTRY_PROJECTProject slugUsed by Gradle plugin sentry.projectName
SENTRY_RELEASERelease identifierFalls back from options.release
SENTRY_ENVIRONMENTEnvironment nameFalls back from options.environment

You can also configure DSN and many options via AndroidManifest.xml meta-data:

<application>
    <meta-data android:name="io.sentry.dsn" android:value="YOUR_DSN" />
    <meta-data android:name="io.sentry.traces-sample-rate" android:value="1.0" />
    <meta-data android:name="io.sentry.environment" android:value="production" />
    <meta-data android:name="io.sentry.anr.enable" android:value="true" />
    <meta-data android:name="io.sentry.attach-screenshot" android:value="true" />
    <meta-data android:name="io.sentry.attach-view-hierarchy" android:value="true" />
</application>
⚠️ 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().

Verification

After setup, verify Sentry is receiving events:

Test error capture:

// In an Activity or Fragment
try {
    throw RuntimeException("Sentry Android SDK test")
} catch (e: Exception) {
    Sentry.captureException(e)
}

Test tracing:

val transaction = Sentry.startTransaction("test-task", "task")
val span = transaction.startChild("test-span", "description")
span.finish()
transaction.finish()

Test structured logging (SDK ≥ 8.12.0):

Sentry.logger().info("Sentry logging test")
Sentry.logger().error("Error log test", Exception("test error"))

Check the Sentry dashboard:

  • Issues → your test exception should appear within seconds
  • Traces → look for test-task transaction with child span
  • Replays → session recording visible after app interaction (requires API 26+)
  • Logs → structured log entries visible under Logs tab

If nothing appears:

  1. Set options.isDebug = true — SDK logs to Logcat
  2. Verify DSN is correct and matches your Sentry project
  3. Check that your Application class is registered in AndroidManifest.xml as android:name
  4. Confirm the device/emulator has internet connectivity
  5. For NDK crashes, ensure isEnableNdk = true (default) and build with NDK support

Phase 4: Cross-Link

After completing Android setup, check for a backend or web frontend missing Sentry coverage:

# Adjacent backend directories
ls ../backend ../server ../api 2>/dev/null
cat ../go.mod 2>/dev/null | head -3
cat ../requirements.txt ../pyproject.toml 2>/dev/null | head -5
cat ../Gemfile 2>/dev/null | head -3
ls ../backend/package.json ../server/package.json 2>/dev/null

# iOS counterpart app
ls ../ios ../YourApp-iOS 2>/dev/null
find .. -maxdepth 3 -name "*.xcodeproj" 2>/dev/null | head -3

If a backend or related platform exists without Sentry, suggest the matching skill:

DetectedSuggest skill
Go backend (go.mod)sentry-go-sdk
Python backend (requirements.txt, pyproject.toml)sentry-python-sdk
Ruby backend (Gemfile)sentry-ruby-sdk
Node.js backend@sentry/node — see docs.sentry.io/platforms/javascript/guides/express/
iOS app (.xcodeproj)sentry-cocoa-sdk
React Native (package.json with react-native)sentry-react-native-sdk
React / Next.js websentry-react-sdk or sentry-nextjs-sdk

Distributed tracing setup — if the backend skill is added, configure tracePropagationTargets in Android to propagate trace context to your API:

options.tracePropagationTargets = listOf(
    "api.yourapp.com",
    ".*\\.yourapp\\.com"
)

This links mobile transactions to backend traces in the Sentry waterfall view.


Troubleshooting

IssueSolution
Events not appearing in SentrySet isDebug = true, check Logcat for SDK errors; verify DSN is correct and matches your project
SentryAndroid.init() not calledConfirm android:name=".MyApplication" is set in AndroidManifest.xml; Application class not abstract
Gradle plugin not foundAdd the plugin to project-level build.gradle.kts first, then apply false; verify version 6.1.0
ProGuard mapping not uploadingSet SENTRY_AUTH_TOKEN env var; ensure autoUploadProguardMapping = true in sentry {} block
NDK crashes not capturedVerify isEnableNdk = true (default); ensure project has NDK configured in android.ndkVersion
ANR reported in debuggerSet isAnrReportInDebug = false (default); ANR watchdog fires when debugger pauses threads
Session replay not recordingRequires API 26+; verify sessionSampleRate > 0 or onErrorSampleRate > 0; check Logcat for replay errors
Session replay shows blank screenPixelCopy (default) requires hardware acceleration; try SentryReplayOptions.screenshotQuality = CANVAS
Replay masking misalignedViews with translationX/Y or clipToPadding=false can offset masks; report to github.com/getsentry/sentry-java
beforeSend not firingbeforeSend only intercepts managed (Java/Kotlin) events; NDK native crashes bypass it
OkHttp spans not appearingAdd SentryOkHttpInterceptor to your OkHttpClient, or use Gradle plugin OKHTTP bytecode instrumentation
Spans not attached to transactionEnsure TransactionOptions().setBindToScope(true) when starting transaction; child spans look for scope root
Tracing not recordingVerify tracesSampleRate > 0; Activity instrumentation requires isEnableAutoActivityLifecycleTracing = true (default)
Continuous profiling not workingSDK ≥ 8.7.0 required; API 22+ required; set profileSessionSampleRate > 0; don't also set profilesSampleRate
Both profiling modes setprofilesSampleRate and profileSessionSampleRate are mutually exclusive — use only one
TTFD spans missingSet isEnableTimeToFullDisplayTracing = true and call Sentry.reportFullyDisplayed() when screen is ready
Kotlin coroutine scope lostAdd sentry-kotlin-extensions dependency; use Sentry.cloneMainContext() to propagate trace context
Release build stack traces unreadableProGuard mapping not uploaded; confirm Gradle plugin autoUploadProguardMapping = true and auth token set
Source context not showing in SentryEnable includeSourceContext = true in sentry {} block (Gradle plugin required)
BOM version conflictUse implementation(platform("io.sentry:sentry-bom:8.33.0")) and omit versions from all other io.sentry:* entries
Version catalog alias unresolvedAfter editing gradle/libs.versions.toml, sync Gradle; alias names use - in TOML and . in build files (e.g., sentry-androidlibs.sentry.android)
Duplicate Sentry version in catalogReuse 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
SENTRY_AUTH_TOKEN exposedAuth token is build-time only — never pass it to SentryAndroid.init() or embed in the APK

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.92%
按下载量换算29

Claude

29.78%
按下载量换算24

Cursor

16.57%
按下载量换算13

Gemini CLI

9.31%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills