Get your crash rates to zero (ish) and launch time under a second with Android crash reporting and performance monitoring that won’t let you down. Identify and fix every crash and ANR with real time insights, track and solve performance issues with full stack visibility, and save time with efficient Android error monitoring workflows.
Jetpack Compose is Android’s recommended toolkit for building native UI. Our integration automatically captures user interactions as breadcrumbs and transactions, so you can quickly understand and solve any related issues.
Read the docsGet to the root cause of an issue faster by watching replays of real user sessions with best-in-class privacy controls. Understand when, where, and how an error is impacting your app without having to repro it yourself, talk to a customer, or expose sensitive data.
Create customized alerts to take action on crashes and errors before they become widespread. Investigate crashes by device type, OS, and release with actionable, real-time insights, including breadcrumbs, screenshots, stack traces, and suspect commits. Triage and assign issues for fast resolution.
READ ABOUT CRASH REPORTINGIdentify and solve performance issues, like long app start times, ANRs, janky frame rendering, and slow HTTP requests, before they impact your customer experience with Android performance monitoring.
READ ABOUT PERFORMANCE MONITORINGGet code-level insight into how your application performs in production environments on real user devices with Profiling. Find the root cause of slowdowns and issues consuming excessive CPU and affecting Android application performance on your user’s mobile device.
READ MORE ABOUT PROFILINGReduce context switching with a single, centralized platform for Android crash reporting and performance monitoring across projects and clients. With Distributed Tracing, identify backend issues that may affect Android performance, without consulting other tools or engineers.
READ ABOUT DISTRIBUTED TRACING“We were using another popular tool for mobile crash tracking but we wanted to ‘up our game’ and go beyond that. We wanted to capture non-fatal errors in addition to crashes and be set up in a way that we can actually triage and respond to them. We also wanted a better understanding of performance, like screen rendering time. Sentry helped us achieve that.”
Just run this commmand to sign up for and install Sentry.
brew install getsentry/tools/sentry-wizard && sentry-wizard -i android
And then add Sentry Tracing with the below code snippet.
import io.sentry.android.core.SentryAndroid; SentryAndroid.init(this, options -> { options.setDsn("https://[email protected]/0"); // To set a uniform sample rate options.setTracesSampleRate(1.0); // OR if you prefer, determine traces sample rate based on the sampling context options.setTracesSampler( context -> { // return a number between 0 and 1 or null (to fallback to configured value) }); });
Check our documentation for the latest instructions.
Try Sentry for free. Start monitoring and improving the stability and performance of your mobile apps with just a few lines of code.