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

# React Native

> Building subscriptions with Qonversion React Native SDK is simple. Learn more about  and  for free now.

[![GitHub release](https://img.shields.io/github/v/release/qonversion/react-native-sdk?label=Latest%20Release)](https://github.com/qonversion/react-native-sdk/releases)

Install Qonversion React Native SDK to validate user receipts, and get in-app subscription analytics and third-party integrations.

## Install via npm

Qonversion SDK package is available on [npm](https://www.npmjs.com/package/@qonversion/react-native-sdk).

<CodeGroup>
  ```bash Terminal theme={null}
  npm install @qonversion/react-native-sdk
  ```
</CodeGroup>

<Info>
  Migrating from `react-native-qonversion` (v9 or earlier)? See the [React Native v10 migration guide](sep-2025-migration-guide-react-native-10) - the package was renamed to `@qonversion/react-native-sdk`.
</Info>

## Extra steps

### iOS

React Native auto-linking handles the native module registration. After installing the package, run `pod install` from your `ios/` folder.

### Android

Include the `BILLING` permission in your `AndroidManifest.xml` file as follows:

<CodeGroup>
  ```xml AndroidManifest.xml theme={null}
  <uses-permission android:name="com.android.vending.BILLING" />
  ```
</CodeGroup>

## Running with Expo

If you are using Qonversion in an Expo app you will have to create [Development Builds](https://docs.expo.dev/develop/development-builds/create-a-build/).

<Warning>
  ### Solving `TypeError: null is not an object (evaluating ‘RNQonversion.storeSDKInfo’)`

  As Qonversion React Native SDK contains native modules, there is no option to run your app using Expo Go. Make sure you use Development Builds as described above to solve this issue.
</Warning>

## Kids Mode for Qonversion React Native SDK

In case you are building an App for Kids, [follow this guide](kids-mode-sdk) to learn about Kids Mode for Qonversion SDKs.

***

What’s Next

* [Analytics (Observer) Mode](analytics-mode)
* [Subscription Management Mode](subscription-management-mode)
