---
title: "Nightlies | React Native"
canonical_url: "https://www.nutrient.io/guides/react-native/troubleshooting/nightlies/"
md_url: "https://www.nutrient.io/guides/react-native/troubleshooting/nightlies.md"
last_updated: "2026-05-15T19:10:05.056Z"
description: "Learn about nightly releases and how to use them in Nutrient React Native SDK."
---

Nightlies represent our current development snapshot and contain unreleased features and fixes. Use nightlies to verify if a feature or fix is working as intended. These releases to GitHub are automated to run every weekday.

Nightly releases haven’t undergone the same quality control process as our releases. As such, they aren’t suitable for use in production.

An unedited changelog listing the latest changes is available on the React Native [GitHub repository](https://github.com/PSPDFKit/react-native/blob/nightly/CHANGELOG.md). This information isn’t available anywhere else.

Nightly releases can be installed by pointing to the GitHub repository’s `nightly` branch:

```bash

yarn add @nutrient-sdk/react-native@github:PSPDFKit/react-native#nightly

```

Another option is to update your `package.json` file directly:

```json

"dependencies": {
    "@nutrient-sdk/react-native": "github:PSPDFKit/react-native#nightly"

}

```

Delete your `node_modules` directory and run `yarn install` to install the nightly.
---

## Related pages

- [Guide to adding a Nutrient license key in React Native](/guides/react-native/troubleshooting/add-license-key.md)
- [Android Gradle Plugin Requires Java 11](/guides/react-native/troubleshooting/android-gradle-plugin-requires-java-11.md)
- [How to find your iOS app bundle ID easily](/guides/react-native/troubleshooting/finding-the-bundle-id.md)
- [Find out your Nutrient version easily](/guides/react-native/troubleshooting/getting-the-currently-used-version.md)
- [Fixing Android back button crash with Nutrient](/guides/react-native/troubleshooting/handling-back-navigation-with-react-native-screens.md)
- [Fix new architecture build issues in React Native](/guides/react-native/troubleshooting/new-architecture-build-issues.md)
- [Out Of Memory Error React Native Android](/guides/react-native/troubleshooting/out-of-memory-error-react-native-android.md)
- [NutrientView inside a modal is blank or crashes on Android](/guides/react-native/troubleshooting/nutrientview-modal-android.md)
- [React Navigation](/guides/react-native/troubleshooting/react-navigation.md)
- [Managing Nutrient's render cache effectively](/guides/react-native/troubleshooting/outdated-render-cache.md)
- [Textinput Error React Native Android](/guides/react-native/troubleshooting/textinput-error-react-native-android.md)
- [View controller-based status bar appearance](/guides/react-native/troubleshooting/view-controller-based-status-bar-appearance.md)
- [Understanding bundle IDs for iOS app development](/guides/react-native/troubleshooting/what-is-a-bundle-id.md)
- [Understanding app IDs in Android development](/guides/react-native/troubleshooting/what-is-an-app-id.md)
- [CMake/Ninja build error caused by long file paths on Windows](/guides/react-native/troubleshooting/windows-path-length-cmake-error.md)
- [Fix Xcode error code 65 for React Native on M1 Macs](/guides/react-native/troubleshooting/xcode-error-65-missing-required-target-architectures-react-native.md)

