sentry-react-native-sdk
Original:🇺🇸 English
Not Translated
Full Sentry SDK setup for React Native and Expo. Use when asked to "add Sentry to React Native", "install @sentry/react-native", "setup Sentry in Expo", or configure error monitoring, tracing, profiling, session replay, or logging for React Native applications. Supports Expo managed, Expo bare, and vanilla React Native.
3installs
Sourcegetsentry/sentry-for-ai
Added on
NPX Install
npx skill4agent add getsentry/sentry-for-ai sentry-react-native-sdkSKILL.md Content
All Skills > SDK Setup > React Native SDK
Sentry React Native SDK
Opinionated wizard that scans your React Native or Expo 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 React Native" or "set up Sentry" in an RN or Expo app
- User wants error monitoring, tracing, profiling, session replay, or logging in React Native
- User mentions , mobile error tracking, or Sentry for Expo
@sentry/react-native - User wants to monitor native crashes, ANRs, or app hangs on iOS/Android
Note: SDK versions and APIs below reflect current Sentry docs at time of writing (≥6.0.0, minimum recommended ≥8.0.0). Always verify against docs.sentry.io/platforms/react-native/ before implementing.@sentry/react-native
Phase 1: Detect
Run these commands to understand the project before making any recommendations:
bash
# Detect project type and existing Sentry
cat package.json | grep -E '"(react-native|expo|@expo|@sentry/react-native|sentry-expo)"'
# Distinguish Expo managed vs bare vs vanilla RN
ls app.json app.config.js app.config.ts 2>/dev/null
cat app.json 2>/dev/null | python3 -c "import sys,json; d=json.load(sys.stdin); print('Expo managed' if 'expo' in d else 'Bare/Vanilla')" 2>/dev/null
# Check Expo SDK version (important: Expo SDK 50+ required for @sentry/react-native)
cat package.json | grep '"expo"'
# Detect navigation library
grep -E '"(@react-navigation/native|react-native-navigation)"' package.json
# Detect state management (Redux → breadcrumb integration available)
grep -E '"(redux|@reduxjs/toolkit|zustand|mobx)"' package.json
# Check for existing Sentry initialization
grep -r "Sentry.init" src/ app/ App.tsx App.js _layout.tsx 2>/dev/null | head -5
# Detect Hermes (affects source map handling)
cat android/app/build.gradle 2>/dev/null | grep -i hermes
cat ios/Podfile 2>/dev/null | grep -i hermes
# Detect Expo Router
ls app/_layout.tsx app/_layout.js 2>/dev/null
# Detect backend for cross-link
ls backend/ server/ api/ 2>/dev/null
find . -maxdepth 3 \( -name "go.mod" -o -name "requirements.txt" -o -name "Gemfile" -o -name "package.json" \) 2>/dev/null | grep -v node_modules | head -10What to determine:
| Question | Impact |
|---|---|
| Expo path (config plugin + |
| Expo SDK ≥50? | |
| Managed Expo — wizard is simplest; config plugin handles all native config |
| Expo Router project — init goes in |
| Skip install, jump to feature config |
| Recommend |
| Recommend |
| Backend directory detected? | Trigger Phase 4 cross-link |
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 JS exceptions, native crashes (iOS + Android), ANRs, and app hangs
- ✅ Tracing — mobile performance is critical; auto-instruments navigation, app start, network requests
- ✅ Session Replay — mobile replay captures screenshots and touch events for debugging user issues
Optional (enhanced observability):
- ⚡ Profiling — CPU profiling on iOS (JS profiling cross-platform); low overhead in production
- ⚡ Logging — structured logs via ; links to traces for full context
Sentry.logger.* - ⚡ User Feedback — collect user-submitted bug reports directly from your app
Recommendation logic:
| Feature | Recommend when... |
|---|---|
| Error Monitoring | Always — non-negotiable baseline for any mobile app |
| Tracing | Always for mobile — app start, navigation, and network latency matter |
| Session Replay | User-facing production app; debug user-reported issues visually |
| Profiling | Performance-sensitive screens, startup time concerns, or production perf investigations |
| Logging | App uses structured logging, or you want log-to-trace correlation in Sentry |
| User Feedback | Beta or customer-facing app where you want user-submitted bug reports |
Propose: "For your [Expo managed / bare RN] app, 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 type | Recommended setup | Complexity |
|---|---|---|
| Expo managed (SDK 50+) | Wizard CLI or manual with config plugin | Low — wizard does everything |
| Expo bare (SDK 50+) | Wizard CLI recommended | Medium — handles iOS/Android config |
| Vanilla React Native (0.69+) | Wizard CLI recommended | Medium — handles Xcode + Gradle |
| Expo SDK <50 | Use | See legacy docs |
Path A: Wizard CLI (Recommended for all project types)
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 reactNativeIt handles login, org/project selection, SDK installation, native config, source map upload, and. Here's what it creates/modifies:Sentry.init()
File Action Purpose package.jsonInstalls @sentry/react-nativeCore SDK metro.config.jsAdds serializer@sentry/react-native/metroSource map generation app.jsonAdds plugin (Expo only)@sentry/react-native/expoConfig plugin for native builds /App.tsx_layout.tsxAdds andSentry.init()Sentry.wrap()SDK initialization ios/sentry.propertiesStores org/project/token iOS source map + dSYM upload android/sentry.propertiesStores org/project/token Android source map upload android/app/build.gradleAdds Sentry Gradle plugin Android source maps + proguard ios/[AppName].xcodeprojWraps "Bundle RN" build phase + adds dSYM upload iOS symbol upload .env.localSENTRY_AUTH_TOKENAuth token (add to ).gitignoreOnce it finishes, come back and skip to Verification.
If the user skips the wizard, proceed with Path B or C (Manual Setup) below based on their project type.
Path B: Manual — Expo Managed (SDK 50+)
Step 1 — Install
bash
npx expo install @sentry/react-nativeStep 2 —
metro.config.jsjavascript
const { getSentryExpoConfig } = require("@sentry/react-native/metro");
const config = getSentryExpoConfig(__dirname);
module.exports = config;If doesn't exist yet:
metro.config.jsbash
npx expo customize metro.config.js
# Then replace contents with the aboveStep 3 — — Add Expo config plugin
app.jsonjson
{
"expo": {
"plugins": [
[
"@sentry/react-native/expo",
{
"url": "https://sentry.io/",
"project": "YOUR_PROJECT_SLUG",
"organization": "YOUR_ORG_SLUG"
}
]
]
}
}Note: Setas an environment variable for native builds — never commit it to version control.SENTRY_AUTH_TOKEN
Step 4 — Initialize Sentry
For Expo Router ():
app/_layout.tsxtypescript
import { Stack, useNavigationContainerRef } from "expo-router";
import { isRunningInExpoGo } from "expo";
import * as Sentry from "@sentry/react-native";
import React from "react";
const navigationIntegration = Sentry.reactNavigationIntegration({
enableTimeToInitialDisplay: !isRunningInExpoGo(), // disabled in Expo Go
});
Sentry.init({
dsn: process.env.EXPO_PUBLIC_SENTRY_DSN ?? "YOUR_SENTRY_DSN",
sendDefaultPii: true,
// Tracing
tracesSampleRate: 1.0, // lower to 0.1–0.2 in production
// Profiling
profilesSampleRate: 1.0,
// Session Replay
replaysOnErrorSampleRate: 1.0,
replaysSessionSampleRate: 0.1,
// Logging (SDK ≥7.0.0)
enableLogs: true,
// Navigation
integrations: [
navigationIntegration,
Sentry.mobileReplayIntegration(),
],
enableNativeFramesTracking: !isRunningInExpoGo(), // slow/frozen frames
environment: __DEV__ ? "development" : "production",
});
function RootLayout() {
const ref = useNavigationContainerRef();
React.useEffect(() => {
if (ref) {
navigationIntegration.registerNavigationContainer(ref);
}
}, [ref]);
return <Stack />;
}
export default Sentry.wrap(RootLayout);For standard Expo ():
App.tsxtypescript
import { NavigationContainer, createNavigationContainerRef } from "@react-navigation/native";
import { isRunningInExpoGo } from "expo";
import * as Sentry from "@sentry/react-native";
const navigationIntegration = Sentry.reactNavigationIntegration({
enableTimeToInitialDisplay: !isRunningInExpoGo(),
});
Sentry.init({
dsn: process.env.EXPO_PUBLIC_SENTRY_DSN ?? "YOUR_SENTRY_DSN",
sendDefaultPii: true,
tracesSampleRate: 1.0,
profilesSampleRate: 1.0,
replaysOnErrorSampleRate: 1.0,
replaysSessionSampleRate: 0.1,
enableLogs: true,
integrations: [
navigationIntegration,
Sentry.mobileReplayIntegration(),
],
enableNativeFramesTracking: !isRunningInExpoGo(),
environment: __DEV__ ? "development" : "production",
});
const navigationRef = createNavigationContainerRef();
function App() {
return (
<NavigationContainer
ref={navigationRef}
onReady={() => {
navigationIntegration.registerNavigationContainer(navigationRef);
}}
>
{/* your navigation here */}
</NavigationContainer>
);
}
export default Sentry.wrap(App);Path C: Manual — Bare React Native (0.69+)
Step 1 — Install
bash
npm install @sentry/react-native --save
cd ios && pod installStep 2 —
metro.config.jsjavascript
const { getDefaultConfig } = require("@react-native/metro-config");
const { withSentryConfig } = require("@sentry/react-native/metro");
const config = getDefaultConfig(__dirname);
module.exports = withSentryConfig(config);Step 3 — iOS: Modify Xcode build phase
Open in Xcode. Find the "Bundle React Native code and images" build phase and replace the script content with:
ios/[AppName].xcodeprojbash
# RN 0.81.1+
set -e
WITH_ENVIRONMENT="../node_modules/react-native/scripts/xcode/with-environment.sh"
SENTRY_XCODE="../node_modules/@sentry/react-native/scripts/sentry-xcode.sh"
/bin/sh -c "$WITH_ENVIRONMENT $SENTRY_XCODE"Step 4 — iOS: Add "Upload Debug Symbols to Sentry" build phase
Add a new Run Script build phase in Xcode (after the bundle phase):
bash
/bin/sh ../node_modules/@sentry/react-native/scripts/sentry-xcode-debug-files.shStep 5 — iOS:
ios/sentry.propertiesproperties
defaults.url=https://sentry.io/
defaults.org=YOUR_ORG_SLUG
defaults.project=YOUR_PROJECT_SLUG
auth.token=YOUR_ORG_AUTH_TOKENStep 6 — Android:
android/app/build.gradleAdd before the block:
android {}groovy
apply from: "../../node_modules/@sentry/react-native/sentry.gradle"Step 7 — Android:
android/sentry.propertiesproperties
defaults.url=https://sentry.io/
defaults.org=YOUR_ORG_SLUG
defaults.project=YOUR_PROJECT_SLUG
auth.token=YOUR_ORG_AUTH_TOKENStep 8 — Initialize Sentry ( or entry point)
App.tsxtypescript
import { NavigationContainer, createNavigationContainerRef } from "@react-navigation/native";
import * as Sentry from "@sentry/react-native";
const navigationIntegration = Sentry.reactNavigationIntegration({
enableTimeToInitialDisplay: true,
});
Sentry.init({
dsn: "YOUR_SENTRY_DSN",
sendDefaultPii: true,
tracesSampleRate: 1.0,
profilesSampleRate: 1.0,
replaysOnErrorSampleRate: 1.0,
replaysSessionSampleRate: 0.1,
enableLogs: true,
integrations: [
navigationIntegration,
Sentry.mobileReplayIntegration(),
],
enableNativeFramesTracking: true,
environment: __DEV__ ? "development" : "production",
});
const navigationRef = createNavigationContainerRef();
function App() {
return (
<NavigationContainer
ref={navigationRef}
onReady={() => {
navigationIntegration.registerNavigationContainer(navigationRef);
}}
>
{/* your navigation here */}
</NavigationContainer>
);
}
export default Sentry.wrap(App);Quick Reference: Full-Featured Sentry.init()
Sentry.init()This is the recommended starting configuration with all features enabled:
typescript
import * as Sentry from "@sentry/react-native";
Sentry.init({
dsn: "YOUR_SENTRY_DSN",
sendDefaultPii: true,
// Tracing — lower to 0.1–0.2 in high-traffic production
tracesSampleRate: 1.0,
// Profiling — runs on a subset of traced transactions
profilesSampleRate: 1.0,
// Session Replay — always capture on error, sample 10% of all sessions
replaysOnErrorSampleRate: 1.0,
replaysSessionSampleRate: 0.1,
// Logging — enable Sentry.logger.* API
enableLogs: true,
// Integrations — mobile replay is opt-in
integrations: [
Sentry.mobileReplayIntegration({
maskAllText: true, // masks text by default for privacy
maskAllImages: true,
}),
],
// Native frames tracking (disable in Expo Go)
enableNativeFramesTracking: true,
// Environment
environment: __DEV__ ? "development" : "production",
// Release — set from CI or build system
// release: "my-app@1.0.0+1",
// dist: "1",
});
// REQUIRED: Wrap root component to capture React render errors
export default Sentry.wrap(App);Navigation Setup — React Navigation (v5+)
typescript
import { reactNavigationIntegration } from "@sentry/react-native";
import { NavigationContainer, createNavigationContainerRef } from "@react-navigation/native";
const navigationIntegration = reactNavigationIntegration({
enableTimeToInitialDisplay: true, // track TTID per screen
routeChangeTimeoutMs: 1_000, // max wait for route change to settle
ignoreEmptyBackNavigationTransactions: true,
});
// Add to Sentry.init integrations array
Sentry.init({
integrations: [navigationIntegration],
// ...
});
// In your component:
const navigationRef = createNavigationContainerRef();
<NavigationContainer
ref={navigationRef}
onReady={() => {
navigationIntegration.registerNavigationContainer(navigationRef);
}}
>Navigation Setup — Wix React Native Navigation
typescript
import * as Sentry from "@sentry/react-native";
import { Navigation } from "react-native-navigation";
Sentry.init({
integrations: [Sentry.reactNativeNavigationIntegration({ navigation: Navigation })],
// ...
});Wrap Your Root Component
Always wrap your root component — this enables React error boundaries and ensures crashes at the component tree level are captured:
typescript
export default Sentry.wrap(App);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:
| Feature | Reference | Load when... |
|---|---|---|
| Error Monitoring | | Always (baseline) |
| Tracing & Performance | | Always for mobile (app start, navigation, network) |
| Profiling | | Performance-sensitive production apps |
| Session Replay | | User-facing apps |
| Logging | | Structured logging / log-to-trace correlation |
| User Feedback | | Collecting user-submitted reports |
For each feature: , follow steps exactly, verify it works.
Read ${SKILL_ROOT}/references/<feature>.mdConfiguration Reference
Core Sentry.init()
Options
Sentry.init()| Option | Type | Default | Purpose |
|---|---|---|---|
| | — | Required. Project DSN; SDK disabled if empty. Env: |
| | — | e.g., |
| | — | App version, e.g., |
| | — | Build number / variant identifier (max 64 chars) |
| | | Include PII: IP address, cookies, user data |
| | | Error event sampling (0.0–1.0) |
| | | Max breadcrumbs per event |
| | | Auto-attach stack traces to messages |
| | | Capture screenshot on error (SDK ≥4.11.0) |
| | | Attach JSON view hierarchy as attachment |
| | | Verbose SDK output. Never use in production |
| | | Disable SDK entirely (e.g., for testing) |
| | — | Drop errors matching these patterns |
| | — | Drop transactions matching these patterns |
| | | Max offline-cached envelopes |
| | | Set |
| | — | Add or filter integrations |
Tracing Options
| Option | Type | Default | Purpose |
|---|---|---|---|
| | | Transaction sample rate (0–1). Use |
| | — | Per-transaction sampling; overrides |
| | | Which API URLs receive distributed tracing headers |
| | | Profiling sample rate (applied to traced transactions) |
Native / Mobile Options
| Option | Type | Default | Purpose |
|---|---|---|---|
| | | Set |
| | | Capture native hard crashes (iOS/Android) |
| | — | Slow/frozen frames tracking. Disable in Expo Go |
| | | OOM kill detection (iOS) |
| | | App hang detection (iOS, tvOS, macOS) |
| | | Seconds before classifying as app hang (iOS) |
| | | Auto performance instrumentation |
| | | Java→NDK scope sync (Android) |
| | | Auto-attach all threads on crash (Android) |
| | | Set |
| | — | Callback after native SDKs initialize |
Session & Release Health Options
| Option | Type | Default | Purpose |
|---|---|---|---|
| | | Session tracking (crash-free users/sessions) |
| | | ms of background before session ends |
Replay Options
| Option | Type | Default | Purpose |
|---|---|---|---|
| | | Fraction of all sessions recorded |
| | | Fraction of error sessions recorded |
Logging Options (SDK ≥7.0.0)
| Option | Type | Purpose |
|---|---|---|
| | Enable |
| | Filter/modify logs before sending |
| | Filter log source (SDK ≥7.7.0) |
Hook Options
| Option | Type | Purpose |
|---|---|---|
| | Modify/drop JS error events. ⚠️ Does NOT apply to native crashes |
| | Modify/drop transaction events |
| | Process breadcrumbs before storage |
Environment Variables
| Variable | Purpose | Notes |
|---|---|---|
| Data Source Name | Falls back from |
| Upload source maps and dSYMs | Never commit — use CI secrets |
| Organization slug | Used by wizard and build plugins |
| Project slug | Used by wizard and build plugins |
| Release identifier | Falls back from |
| Environment name | Falls back from |
| Skip source map upload | Set |
| Expo public env var for DSN | Safe to embed in client bundle |
Source Maps & Debug Symbols
Source maps and debug symbols are what transform minified stack traces into readable ones. When set up correctly, Sentry shows you the exact line of your source code that threw.
How Uploads Work
| Platform | What's uploaded | When |
|---|---|---|
| iOS (JS) | Source maps ( | During Xcode build |
| iOS (Native) | dSYM bundles | During Xcode archive / Xcode Cloud |
| Android (JS) | Source maps + Hermes | During Gradle build |
| Android (Native) | Proguard mapping + NDK | During Gradle build |
Expo: Automatic Upload
The config plugin automatically sets up upload hooks for native builds. Source maps are uploaded during and (release).
@sentry/react-native/expoeas buildexpo run:ios/androidbash
SENTRY_AUTH_TOKEN=sntrys_... npx expo run:ios --configuration ReleaseManual Upload (bare RN)
If you need to manually upload source maps:
bash
npx sentry-cli sourcemaps upload \
--org YOUR_ORG \
--project YOUR_PROJECT \
--release "my-app@1.0.0+1" \
./distDefault Integrations (Auto-Enabled)
These integrations are enabled automatically — no config needed:
| Integration | What it does |
|---|---|
| Catches unhandled JS exceptions and promise rejections |
| Attaches release/dist to all events |
| Records console logs, HTTP requests, user gestures as breadcrumbs |
| Adds HTTP request/response breadcrumbs |
| Attaches device/OS/battery info to events |
| Attaches app version, bundle ID, and memory info |
| Attaches locale and timezone |
| Captures screenshot on error (when |
| Attaches view hierarchy (when |
| Links JS errors to their native crash counterparts |
Opt-In Integrations
| Integration | How to enable |
|---|---|
| Add to |
| Add to |
| Add to |
| Add to |
Expo Config Plugin Reference
Configure the plugin in or :
app.jsonapp.config.jsjson
{
"expo": {
"plugins": [
[
"@sentry/react-native/expo",
{
"url": "https://sentry.io/",
"project": "my-project",
"organization": "my-org",
"note": "Set SENTRY_AUTH_TOKEN env var for native builds"
}
]
]
}
}Or in (allows env var interpolation):
app.config.jsjavascript
export default {
expo: {
plugins: [
[
"@sentry/react-native/expo",
{
url: "https://sentry.io/",
project: process.env.SENTRY_PROJECT,
organization: process.env.SENTRY_ORG,
},
],
],
},
};Production Settings
Lower sample rates and harden config before shipping to production:
typescript
Sentry.init({
dsn: process.env.EXPO_PUBLIC_SENTRY_DSN,
environment: __DEV__ ? "development" : "production",
// Trace 10–20% of transactions in high-traffic production
tracesSampleRate: __DEV__ ? 1.0 : 0.1,
// Profile 100% of traced transactions (profiling is always a subset of tracing)
profilesSampleRate: 1.0,
// Replay all error sessions, sample 5% of normal sessions
replaysOnErrorSampleRate: 1.0,
replaysSessionSampleRate: __DEV__ ? 1.0 : 0.05,
// Set release and dist for accurate source map lookup
release: "my-app@" + Application.nativeApplicationVersion,
dist: String(Application.nativeBuildVersion),
// Disable debug logging in production
debug: __DEV__,
});Verification
After setup, test that Sentry is receiving events:
typescript
// Quick test — throws and Sentry.wrap(App) catches it
<Button
title="Test Sentry Error"
onPress={() => {
throw new Error("My first Sentry error!");
}}
/>
// Or capture manually
<Button
title="Test Sentry Message"
onPress={() => {
Sentry.captureMessage("Sentry test message", "info");
}}
/>Check the Sentry dashboard:
- Issues → your test error should appear within seconds
- Traces → look for a "main" transaction with child spans
- Replays → session recording visible after app interaction (native build only — not Expo Go)
- Logs → structured log entries if
enableLogs: true
⚠️ Expo Go limitation: Native crashes, session replay, slow/frozen frames, TTID, and TTFD only work in native builds (oreas build). Expo Go runs in a JS-only mode. Setexpo runto avoid warnings.enableNativeFramesTracking: !isRunningInExpoGo()
If nothing appears:
- Set — SDK logs to Metro console
debug: true - Verify DSN is correct and the Sentry project exists
- Ensure is applied to the root component
Sentry.wrap(App) - For native crashes, build a release build (crashes in debug mode may not forward)
Phase 4: Cross-Link
After completing React Native setup, check for a backend or web frontend missing Sentry coverage:
bash
# 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 -3
cat ../Gemfile 2>/dev/null | head -3
ls ../backend/package.json ../server/package.json 2>/dev/null
# Web frontend in same or sibling repo
ls ../web ../frontend ../dashboard 2>/dev/null
cat ../web/package.json ../frontend/package.json 2>/dev/null | grep -E '"react"|"svelte"|"next"'
# Check for OpenTelemetry (for distributed tracing interop)
grep -r "opentelemetry" ../backend/go.mod ../server/requirements.txt 2>/dev/nullIf a backend or web frontend exists without Sentry, suggest the matching skill:
| Detected | Suggest skill |
|---|---|
Go backend ( | |
Python backend ( | |
Ruby backend ( | |
| Node.js backend (Express, Fastify, etc.) | |
| React / Next.js web | |
| Svelte / SvelteKit web | |
Distributed tracing setup — if the backend skill is added, configure in React Native to propagate trace context to your API:
tracePropagationTargetstypescript
Sentry.init({
tracePropagationTargets: [
"localhost",
/^https:\/\/api\.yourapp\.com/,
],
// ...
});This links mobile transactions to backend traces in the Sentry waterfall view.
Troubleshooting
| Issue | Solution |
|---|---|
| Events not appearing in Sentry | Set |
| Run |
| iOS build fails with Sentry script | Verify the "Bundle React Native code and images" script was replaced (not appended to) |
Android build fails after adding | Ensure |
| Android Gradle 8+ compatibility issue | Use |
| Source maps not uploading | Verify |
| Source maps not resolving in Sentry | Confirm |
| Hermes source maps not working | Hermes emits |
| Session replay not recording | Must use a native build (not Expo Go); confirm |
| Replay shows blank/black screens | Check that |
| Slow/frozen frames not tracked | Set |
| TTID / TTFD not appearing | Requires |
| App crashes on startup after adding Sentry | Likely a native initialization error — check Xcode/Logcat logs; try |
| Expo SDK 49 or older | Use |
| Import from |
| Node not found during Xcode build | Add |
| Expo Go warning about native features | Use |
| Expected — |
| Android 15+ (16KB page size) crash | Upgrade to |
| Too many transactions in dashboard | Lower |
| |
| EAS Build: Sentry auth token missing | Set |