> ## Documentation Index
> Fetch the complete documentation index at: https://docs.traceback.cc/llms.txt
> Use this file to discover all available pages before exploring further.

# React Native SDK

> Cross-platform error monitoring, native crash detection, and offline buffering for Expo and bare React Native.

## Installation

<CodeGroup>
  ```bash Expo theme={null}
  npx expo install @traceback/react-native
  ```

  ```bash React Native CLI theme={null}
  npm install @traceback/react-native
  cd ios && pod install
  ```
</CodeGroup>

***

## Setup

```tsx theme={null}
import * as Traceback from "@traceback/react-native";

Traceback.init({
  dsn: "https://tb_live_key@ingest.traceback.dev/1",
  enableNativeCrashReporting: true,
  enableAutoSessionTracking: true,
});

export default Traceback.wrap(App);
```
