---
title: Changelog - React Native (classic)
description: The Contentsquare React Native Bridge changelog
lastUpdated: 21 April 2026
source_url:
  html: https://docs.contentsquare.com/en/react-native/changelog/
  md: https://docs.contentsquare.com/en/react-native/changelog/index.md
---

> Documentation index: https://docs.contentsquare.com/llms.txt
> Use this file to discover all available pages before exploring further.

The latest CSQ SDK is here! Learn how to [upgrade your app](https://docs.contentsquare.com/en/csq-sdk-react-native/experience-analytics/upgrade-from-cs-sdk/).

📬 Stay updated!

## Contentsquare SDK

### 6.1.0 - 2026.02.26

* **Native SDKs:**

  * Android: 4.43.8 → 4.44.0
  * iOS: 4.45.1 → 4.46.0

* **Bug fix**

  * Fixed iOS module headers to ensure compatibility with CocoaPods projects using `use_frameworks! :linkage => :static`.
  * Fixed 0.82.x Session Replay compatibility issues

* Official support for React Native up to 0.84.x

Warning

* Android: React Native crashes are not deobfuscated in Error Analysis. We are currently investigating this issue.

### 6.0.5 - 2026.02.11

* **Native SDKs:**

  * Android: 4.43.3 → 4.43.8

* **Bug fix**

  * Fixed a crash in Android WindowCallbackWrapper

### 6.0.3 - 2026.02.03

* **Bug fix**
  * WebViews: Fixed an issue with the `userAgent` prop being overwritten

### 6.0.2 - 2025.12.15

Contentsquare CLI

* **v0.1.4** is now available. Update to this version if your app uses React Native 0.82 or later. See [CLI configuration](https://docs.contentsquare.com/en/react-native/error-analysis/#cli-configuration) for more information

Session Replay

* **iOS React Native 0.82.x** is not fully compatible with Session Replay feature.

- **Bug fix**
  * Changed the default value of `disableInteractionAutocapture` to `false` to re-enable interaction capture by default
- Fixed an issue with pod installation failing on React Native versions below 0.80
- Official support for React Native up to 0.82.x

### 6.0.1 - 2025.12.05

Breaking changes

* `autostart` is removed. From now on to start the SDK, you need to call `Contentsquare.start()`.
* `optIn` call is required to start tracking. By default, the SDK will not start tracking until `optIn` is called.
* `forgetMe` API has been removed. Use `optOut` instead, see [Privacy section](https://docs.contentsquare.com/en/react-native/privacy/#opt-out).
* All screenshots should be re-taken to ensure proper zoning functionality.

Contentsquare CLI

* **v0.1.3** is now available for version 6.0.1 and later. See [CLI configuration](https://docs.contentsquare.com/en/react-native/error-analysis/#cli-configuration) for more information

- **Native SDKs:**

  * iOS: 4.43.3 → 4.45.1
  * Android: 4.43.2 → 4.43.3

### 5.1.3 - 2025.12.26

* **Native SDK:**
  * **[Android native SDK 4.43.6](https://docs.contentsquare.com/en/android/changelog/#4436---20251226)**

### 5.1.2 - 2025.12.01

* **Native SDK:**
  * **[Android native SDK 4.43.2](https://docs.contentsquare.com/en/android/changelog/#4432---20251124)**

### 5.1.1 - 2025.10.23

* Fixed a crash in Android WebViews when loading pages with SSL certificates

### 5.1.0 - 2025.10.01

Warning

**ForgetMe:** This API will be deprecated.

* **Native SDK:**

  * **[iOS native SDK 4.43.3](https://docs.contentsquare.com/en/ios/changelog/#4433---20250924)**

* Official support for React Native up to 0.81.x

* Added support for `react-native-linear-gradient` library on iOS

* Fixed iOS new architecture module headers to ensure compatibility with CocoaPods projects using `use_frameworks! :linkage => :static`.

### 5.0.2 - 2025.09.02

* Fixed missing logging methods
* Fixed missing declaration files

### 5.0.1 - 2025.08.22

* **Native SDK:**

  * **[iOS native SDK 4.43.2](https://docs.contentsquare.com/en/ios/changelog/#4432---20250819)**

* Fixed event emission timing issue

### 5.0.0 - 2025.07.30

* **Official support** for React Native up to `0.80.x` and the [New Architecture ↗](https://reactnative.dev/architecture/landing-page).

* **Native SDKs:**

  * **[Android SDK 4.39.4](https://docs.contentsquare.com/en/android/changelog/#4394---20250722)**
  * **[iOS SDK 4.42.4](https://docs.contentsquare.com/en/ios/changelog/#4424---20250722)**

* **Breaking Changes:**

  * **Webviews**: [New WebView injection method](https://docs.contentsquare.com/en/react-native/track-webviews/#cswebview-component).

    Starting with 5.0.0, wrap your WebView inside the `<CSWebView/>` component. The implementation using the `renderWebView` attribute is no longer available.

    ```jsx
    import React from "react";
    import { WebView } from "react-native-webview";
    import { CSWebView } from "@contentsquare/react-native-bridge";


    const WebviewWithTagScreen = () => {
      return (
        // Removed — this implementation is no longer available starting with V5.0.0
        <CSWebView
          url="https://www.mywebpage.com"
          renderWebView={(onLayout, webViewUrl) => {
            return (
              <WebView
                onLayout={onLayout}
                source={{ uri: webViewUrl }}
              />
            );
          }}
        />
        <CSWebView>
          <WebView source={{ uri: "https://www.mywebpage.com" }} />
        </CSWebView>
      );
    };


    export default WebviewWithTagScreen;
    ```

  * **Transactions**: To send transactions with String type currencies, use `sendTransactionWithStringCurrency` instead of `sendTransaction` which has been removed.

    ```javascript
    import Contentsquare, { Currency } from "@contentsquare/react-native-bridge";


    Contentsquare.sendTransactionWithStringCurrencysendTransaction(10.99, "USD");
    Contentsquare.sendTransactionWithStringCurrencysendTransaction(200.99, "eur", "my_transaction_2");
    ```

  * **Session Replay**: To subscribe to Session Replay link changes, use `getCurrentSessionReplayLink` instead of `onSessionReplayLinkChange` which has been removed.

    ```jsx
    const link = await Contentsquare.getCurrentSessionReplayLink();


    useEffect(() => {
      const subscriber = Contentsquare.onSessionReplayLinkChange((link) => {
        currentSessionReplaylink = link;
      });


      return () => {
        if (subscriber) {
          subscriber.remove();
        }
      };
    }, []);
    ```

* **Dropped support** for React Native versions `< 0.71`.

### 4.16.1 - 2025.07.22

* **Native SDKs:**

  * **[iOS native SDK 4.42.3](https://docs.contentsquare.com/en/ios/changelog/#4423---20250702)**

* **Bug fix:** iOS - Improved state observation for WebView

### 4.16.0 - 2025.05.21

* **Native SDKs:**

  * **[Android native SDK 4.38.2](https://docs.contentsquare.com/en/android/changelog/#4382---20250516)**
  * **[iOS native SDK 4.41.3](https://docs.contentsquare.com/en/ios/changelog/#4413---20250516)**

* Improves the masking feature for Session Replay on Android

* Official support for React Native up to 0.79.x

### 4.15.0 - 2025.04.15

* **Native SDKs:**
  * **[Android native SDK 4.37.0](https://docs.contentsquare.com/en/android/changelog/#4370---20250402)**

### 4.14.0 - 2025.04.02

* **Bug fix:** Prevented a crash when the new architecture is enabled. Learn more about [compatibility](https://docs.contentsquare.com/en/react-native/compatibility/) with the new architecture in React Native.

### 4.13.1 - 2025.03.24

* **Native SDKs:**
  * **[Android native SDK 4.36.2](https://docs.contentsquare.com/en/android/changelog/#4362---20250321)**

### 4.13.0 - 2025.02.26

* **Native SDKs:**

  * **[Android native SDK 4.36.0](https://docs.contentsquare.com/en/android/changelog/#4360---20250210)**
  * **[iOS native SDK 4.40.2](https://docs.contentsquare.com/en/ios/changelog//#4402---20250220)**

* **Bug fix:** Removed conflicted dependencies

* Official support for React Native up to 0.78.x

**Session Replay**

* Full masking configuration by App/SDK version in the CSQ Console

### 4.12.0 - 2025.02.10

* **Native SDKs:**

  * **[Android native SDK 4.35.0](https://docs.contentsquare.com/en/android/changelog/#4350---20250102)**
  * **[iOS native SDK 4.39.0](https://docs.contentsquare.com/en/ios/changelog//#4390---20250109)**

* **Bug fix:** iOS - Resolve crashes caused by unnecessary React import

### 4.11.2 - 2024.12.10

* **Native SDKs:**

  * **[iOS native SDK 4.38.3](https://docs.contentsquare.com/en/ios/changelog/#4383---20241210)**

* **Bug fix:** iOS - Resolve missing webview screens in Session Replay

### 4.11.1 - 2024.12.04

* **Bug fix:** iOS - Fix a crash in the Error Analysis module occurring on React Native 0.76.x

### 4.11.0 - 2024.11.21

* **Native SDKs:**

  * **[Android native SDK 4.34.0](https://docs.contentsquare.com/en/android/changelog/#4340---20241025)**
  * **[iOS native SDK 4.38.1](https://docs.contentsquare.com/en/ios/changelog/#4380---20241025)**

* Official support for React Native up to 0.76.x

* Simpler implementation method for CSWebView

* **Bug fix:** iOS - Prevents text duplication in Session Replay when using `react-native-linear-gradient` and `@react-native-masked-view/masked-view` packages.

### 4.10.1 - 2024.10.14

* **Native SDKs:**

  * **[Android native SDK 4.33.1](https://docs.contentsquare.com/en/android/changelog/#4331---20241007)**

* **Android**

  * Improved `CSMask` component

### 4.10.0 - 2024.10.08

* **Native SDKs:**

  * **[Android native SDK 4.33.0](https://docs.contentsquare.com/en/android/changelog/#4330---20241002)**
  * **[iOS native SDK 4.37.1](https://docs.contentsquare.com/en/ios/changelog/#4371---20241001)**

* **iOS**

  * Added support for the `react-native-linear-gradient` library

* **Track transactions**

  * Enhancements to the `sendTransaction` method
  * ⛔️ DEPRECATED `sendTransactionWithStringCurrency`: use `sendTransaction` instead

* **Error Analysis**

  * Collect information for crashes in React Native

### 4.9.0 - 2024.09.13

* **Native SDKs:**

  * **[Android native SDK 4.32.1](https://docs.contentsquare.com/en/android/changelog/#4321---20240910)**
  * **[iOS native SDK 4.36.0](https://docs.contentsquare.com/en/ios/changelog/#4360---20240906)**

* **iOS**

  * Added support for the `@react-native-masked-view` library

* **Bug fix:** CSWebView injection

### 4.8.0 - 2024.08.21

* **Native SDKs:**

  * **[Android native SDK 4.31.0](https://docs.contentsquare.com/en/android/changelog/#4310---20240802)**
  * **[iOS native SDK 4.35.1](https://docs.contentsquare.com/en/ios/changelog/#4351---20240814)**

* Official support for React Native up to 0.75.x

* **Bug fix:** Android - Resolved an issue where navigating back in the webview history would result in a white screen

* **Bug fix:** Android - Fixed a crash issue when manually initializing the SDK

### 4.7.0 - 2024.07.15

* **Native SDKs:**

  * **[Android native SDK 4.30.0](https://docs.contentsquare.com/en/android/changelog/#4300---20240701)**
  * **[iOS native SDK 4.34.0](https://docs.contentsquare.com/en/ios/changelog/#4340---20240702)**

* Improved SDK thread safety

* Improved SDK ProGuard rules

### 4.6.1 - 2024.07.02

* **Bug fix:** Fixing an issue with source and URL prop changes in CSWebView

### 4.6.0 - 2024.06.19

* **Native SDKs:**

  * **[Android native SDK 4.29.1](https://docs.contentsquare.com/en/android/changelog/#4291---20240611)**
  * **[iOS native SDK 4.33.1](https://docs.contentsquare.com/en/ios/changelog/#4331---20240613)**

* Improved `CSMask` component.

### 4.5.1 - 2024.06.17

* **Native SDK:**
  * **[Android native SDK 4.27.1](https://docs.contentsquare.com/en/android/changelog/#4271---20240329)**

### 4.5.0 - 2024.05.17

* **Native SDK:**

  * **[iOS native SDK 4.32.0](https://docs.contentsquare.com/en/ios/changelog/#4320---20240423)**

* Official support for React Native up to 0.74.x

### 4.4.0 - 2024.04.08

**🚨 Minimum React Native version announcement**

Starting with this release, Contentsquare Bridge for React Native will require React Native version to be 0.70 or later

* **Native SDKs:**

  * **[Android native SDK 4.27.0](https://docs.contentsquare.com/en/android/changelog/#4270---20240327)**
  * **[iOS native SDK 4.31.2](https://docs.contentsquare.com/en/ios/changelog/#4312---20240325)**

* **Bug fix:** Fixing an issue in Expo involving a missing library import.

* **Bug fix:** Fixing an issue on Android related to the use of nested `CSMask` components.

### 4.3.1 - 2024.02.29

* **Native SDKs:**

  * **[iOS native SDK 4.30.2](https://docs.contentsquare.com/en/ios/changelog/#4302---20240229)**

* **Bug fix:** Fixing an issue where occasionally closing a WebView freezes the view.

### 4.3.0 - 2024.02.28

* **Native SDKs:**

  * **[Android native SDK 4.26.0](https://docs.contentsquare.com/en/android/changelog/#4260---20240220)**
  * **[iOS native SDK 4.30.1](https://docs.contentsquare.com/en/ios/changelog/#4301---20240227)**

* **Session Replay**

  * New method to subscribe to Session Replay Link changes
  * ⛔️ DEPRECATED `getCurrentSessionReplayLink`: use `onSessionReplayLinkChange` instead

### 4.2.0 - 2024.01.30

* **Native SDKs:**

  * **[iOS native SDK 4.29.1](https://docs.contentsquare.com/en/ios/changelog/#4291---20240126)**

* CSWebView support for webview source object

### 4.1.0 - 2024.01.17 \[⛔️ DEPRECATED]

* **Native SDKs:**

  * **[Android native SDK 4.24.0](https://docs.contentsquare.com/en/android/changelog/#4240---20231215)**
  * **[iOS native SDK 4.28.0](https://docs.contentsquare.com/en/ios/changelog/#4280---20231219)**

* **Bug fix:** Remove style on `CSMask`

### 4.0.1 - 2024.01.05

* **Bug fix:** URL injection method in WebView

### 4.0.0 - 2024.01.03

* Official support for React Native up to 0.73.x
* **BREAKING CHANGE:** New WebView injection method. Refer to new documentation to check implementation [Track WebViews](https://docs.contentsquare.com/en/react-native/track-webviews/)

### 3.10.0 - 2023.12.21 \[⛔️ DEPRECATED]

### 3.9.0 - 2023.11.28

* **Native SDKs:**

  * **[Android native SDK 4.23.1](https://docs.contentsquare.com/en/android/changelog/#4231---20231124)**
  * **[iOS native SDK 4.27.0](https://docs.contentsquare.com/en/ios/changelog/#4270---20231116)**

* **Custom variables** feature is now available on Android

* Improved **WebView injection** for Android

* **Bug fix:** Prevent a potential error on Android `CSMask`

### 3.8.0 - 2023.11.06

* **Native SDKs:**

  * **[Reverted to Android native SDK 4.20.0](https://docs.contentsquare.com/en/android/changelog/#4200---20230713)**
    * **The Custom variables** feature is NOT available on Android
  * **[iOS native SDK 4.25.2](https://docs.contentsquare.com/en/ios/changelog/#4252---20230922)**

* **Session Replay**

  * Added a new method `setUserIdentifier`

* **Bug fix:** Fixed a bug on Android when using the `start` method

* **Bug fix:** Fixed a bug on Android when using the `CSMask`

### 3.7.1 - 2023.10.04 \[⛔️ DEPRECATED]

* **Bug fix:** Fixed a crash that occurred when manually starting the application while InApp features were active

### 3.7.0 - 2023.09.19 \[⛔️ DEPRECATED]

* **Native SDKs:**

  * **[Android native SDK 4.21.0](https://docs.contentsquare.com/en/android/changelog/#4210---20230829)**
  * **[iOS native SDK 4.25.1](https://docs.contentsquare.com/en/ios/changelog/#4251---20230913)**

* **Session Replay**

  * Added a new method `setDefaultMasking`

* **Custom variables** feature is now available on Android

* **Bug fix:** Fix a crash caused by `CSMask`

### 3.6.1 - 2023.08.25

* Support `use_frameworks!` in Podfile

### 3.6.0 - 2023.08.02

* **Native SDKs:**

  * **[Android native SDK 4.20.0](https://docs.contentsquare.com/en/android/changelog/#4200---20230713)**
  * **[iOS native SDK 4.24.0](https://docs.contentsquare.com/en/ios/changelog/#4240---20230714)**

* Official support for React Native up to 0.72.x

* **Bug fix:** Fixed WebView Injection on Android - there was an issue with WebView injection failing during the initial visit of a WebView

* **Bug fix:** Fixed `CSMask` - there was an issue with `CSMask` impacting the screen layout

* Zoning analysis: Reliable targets feature is now available on iOS

* Session Replay: Collecting gesture events is now available on iOS

* **Error Analysis**:

  * Enabled collection of failed network requests (API Errors)
  * Enabled collection of API Error troubleshooting details (Available in the Session Replay)
  * Added a method to mask API errors using template URL `ErrorAnalysis.setUrlMaskingPatterns`

### 3.5.0 - 2023.06.22

* **Native SDKs:**

  * **[Android native SDK 4.19.0](https://docs.contentsquare.com/en/android/changelog/#4190---20230614)**
  * **[iOS native SDK 4.23.0](https://docs.contentsquare.com/en/ios/changelog/#4230---20230609)**

* **Session Replay:**

  * Fixed an animation glitch.
  * Added a method to programmatically retrieve the Session Replay link.
  * Different quality settings are available.

### 3.4.1 - 2023.06.07

* Fix a bug where React Native project with version below 0.70 couldn't find `CSMask` import.

### 3.4.0 - 2023.05.19

Warning

If your **RN version is below 0.70.0**, Make sure to follow **[this configuration](https://docs.contentsquare.com/en/react-native/compatibility/#for-react-native-project-below-0700)** when implementing this Bridge version.

* The Bridge uses **[Android native SDK 4.18.1](https://docs.contentsquare.com/en/android/changelog/#4181---20230516)** and **[iOS native SDK 4.22.1](https://docs.contentsquare.com/en/ios/changelog/#4221---20230505)**
* [Session Replay](https://docs.contentsquare.com/en/react-native/session-replay/) feature is available for iOS and Android. For more information, reach out to your Contentsquare contact.

### 3.3.1 - 2023.05.02

Warning

If your **RN version is below 0.70.0**, Make sure to follow **[this configuration](https://docs.contentsquare.com/en/react-native/compatibility/#for-react-native-project-below-0700)** when implementing this Bridge version.

* Fix of an Xcode 14 issue

### 3.3.0 - 2023.04.03

Warning

If your **RN version is below 0.70.0**, Make sure to follow **[this configuration](https://docs.contentsquare.com/en/react-native/compatibility/#for-react-native-project-below-0700)** when implementing this Bridge version.

* **Custom Variables:** The [Custom Variables feature](https://docs.contentsquare.com/en/react-native/track-custom-variables/) is now supported by the bridge (for iOS only, beta version).
* Adding masking component for future Session Replay feature (WIP)

### 3.2.0 - 2023.03.08

* The Bridge uses **[iOS native SDK 4.20.0](https://docs.contentsquare.com/en/ios/changelog/#4200---20230224)**
* Official support for React Native up to 0.71.x
* Add error callback to dynamic variables method

### 3.1.0 - 2023.01.12

* The Bridge uses **[Android native SDK 4.15.0](https://docs.contentsquare.com/en/android/changelog/#4150---20221220)** and **[iOS native SDK 4.18.0](https://docs.contentsquare.com/en/ios/changelog/#4180---20221216)**

### 3.0.0 - 2022.12.12

* Upgrade maximum React Native version compatibility to 0.70.x
* **BREAKING CHANGE:** New WebView injection method

### 2.8.0 - 2022.12.01

* The Bridge uses **[Android native SDK 4.14.0](https://docs.contentsquare.com/en/android/changelog/#4140---20221103)** and **[iOS native SDK 4.16.0](https://docs.contentsquare.com/en/ios/changelog/#4160---20220912)**
* Add Expo compatibility

### 2.7.0 - 2022.08.03

* The Bridge uses **[Android native SDK 4.11.0](https://docs.contentsquare.com/en/android/changelog/#4110---20220707)** and **[iOS native SDK 4.15.1](https://docs.contentsquare.com/en/ios/changelog/#4151---20220726)**

### 2.6.0 - 2022.05.10

* The Bridge uses **[Android native SDK 4.9.0](https://docs.contentsquare.com/en/android/changelog/#490---20220415)** and **[iOS native SDK 4.13.0](https://docs.contentsquare.com/en/ios/changelog/#4130---20220505)**
* Official support for React Native up to 0.68.x
* Fix a screenshot issue with some ReactNative UI components (RNSVGSvgView)

### 2.5.3 - 2022.04.19

* Fix unreliable WebView injection.
* Official support for React Native up to 0.67.x

### 2.5.2 - 2022.2.16

* Fixing a crash caused by WebViews in some specific cases.

### 2.5.1 - 2022.1.21

* The Bridge uses **[Android native SDK 4.7.0](https://docs.contentsquare.com/en/android/changelog/#470---20220114)** and **[iOS native SDK 4.10.1](https://docs.contentsquare.com/en/ios/changelog/#4101---20220114)**

### 2.5.0 - 2022.1.18

* Official support for React Native up to 0.66.x
* The Bridge uses **[Android native SDK 4.6.0](https://docs.contentsquare.com/en/android/changelog/#460---20211215)** and **[iOS native SDK 4.10.0](https://docs.contentsquare.com/en/ios/changelog/#4100---20211213)**

### 2.4.0 - 2021.11.18

* **WebView tracking:** WebView tracking is now available. See [Track WebViews section](https://docs.contentsquare.com/en/react-native/track-custom-variables/)
* **Implementing deeplink support for in-app features (iOS):** You can now handle the deeplink URL directly from your JavaScript code, in addition to being able to handle it the native way
* The Bridge uses **[Android native SDK 4.4.0](https://docs.contentsquare.com/en/android/changelog/#440---20211018)** and **[iOS native SDK 4.9.0](https://docs.contentsquare.com/en/ios/changelog/#490---20211104)**
* **Drop support for iOS 10.** Minimum supported version is now iOS 11. [See Compatibility section](https://docs.contentsquare.com/en/ios/compatibility/)

### 2.3.0 - 2021.09.02

* **Disable auto-start:** Option to start the SDK in a manual method instead of starting automatically.
* The Bridge uses **[Android native SDK 4.3.0](https://docs.contentsquare.com/en/android/changelog/#430---20210810)** and **[iOS native SDK 4.6.0](https://docs.contentsquare.com/en/ios/changelog/#460---20210810)**

### 2.2.1 - 2021.07.08

* The Bridge uses **[Android native SDK 4.2.1](https://docs.contentsquare.com/en/android/changelog/#421---20210707)** and **[iOS native SDK 4.4.0](https://docs.contentsquare.com/en/ios/changelog/#440---20210623)**

### 2.2.0 - 2021.06.28

* The Bridge uses **[Android native SDK 4.2.0](https://docs.contentsquare.com/en/android/changelog/#420---20210614)** and **[iOS native SDK 4.4.0](https://docs.contentsquare.com/en/ios/changelog/#440---20210623)**
* Official support for React Native 0.64.x
* Fixed issue that caused some apps to freeze

### 2.1.0 - 2021.03.11

* The Bridge uses **[Android native SDK 4.1.0](https://docs.contentsquare.com/en/android/changelog/#410---20210216)** and **[iOS native SDK 4.1.0](https://docs.contentsquare.com/en/ios/changelog/#410---20210121)**

### 2.0.0 - 2020.11.03

* The Bridge uses **[Android native SDK 4.0.0](https://docs.contentsquare.com/en/android/changelog/#400---20201029)** and **[iOS native SDK 4.0.0](https://docs.contentsquare.com/en/ios/changelog/#400---20201028)**

### 1.1.1 - 2020.08.26

* The Bridge uses **[iOS native SDK 3.2.1](https://docs.contentsquare.com/en/ios/changelog/#321---20200826)**

### 1.1.0 - 2020.08.21

* The Bridge uses **[Android native SDK 3.2](https://docs.contentsquare.com/en/android/changelog/#320---20200730)** and **[iOS native SDK 3.2](https://docs.contentsquare.com/en/ios/changelog/#320---20200727)**
* Official support for React Native 0.63.x

### 1.0.0 - 2020.04.23

* The bridge is now available at `@contentsquare/react-native-bridge`.
* The Bridge uses **Android native SDK 3.1.0** and **iOS native SDK 3.1.1**
* Bridge only supports React Native >=0.60
* Dynamic Variables are supported

***

## CLI for Contentsquare

Note

* See [CLI configuration](https://docs.contentsquare.com/en/react-native/error-analysis/#cli-configuration) for configuration details

### 1.0.0 - 2026.04.21

Contentsquare React Native CLI is now available via npm as `@contentsquare/react-native-cli`

* **Breaking Change:** The CLI package name has changed from `@contentsquare/cli` to `@contentsquare/react-native-cli`. If you already have the CLI installed, you must:

  * Update the package name in your `package.json`
  * Update the paths in your source maps upload configuration (see [Error Analysis Source Maps](https://docs.contentsquare.com/en/react-native/error-analysis/#source-maps))

* Fix support for Gradle 9+
