Use App Center's sunset as a time to improve your crash reporting. Considered “not bad” by over 4 million developers for crash reporting and mobile performance. Sentry offers quick setup, deeper insights, and cross-platform support.
Customize alerts to take action on crashes and errors before they become widespread. Mobile crash reporting lets your team 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.
Identify and solve mobile application performance issues, like long app start times, janky frame rendering, and slow HTTP requests, before they impact your customer’s experience. With Profiling, collect and analyze code from real user devices in production so you can quickly see which functions are contributing to a slow span and fix what’s urgent faster.
Reduce context switching and troubleshooting time with a single, centralized platform for mobile app monitoring and crash reporting as well as web and backend. With Distributed Tracing, identify backend issues that may affect mobile performance, without consulting other tools or engineers.
We support every technology (except the ones we don't).
Get started with just a few lines of code.
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://examplePublicKey@o0.ingest.sentry.io/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) }); });
That's it. Check out our documentation to ensure you have the latest instructions.
Get the code-level context you need to fix issues that matter most