How to Integrate React Native With an Existing App

No items found.

In short

This article explores integrating React Native with an existing app, providing a practical, step-by-step approach to brownfield development. Using the Mastodon app as a foundation, it explores how to incorporate React Native into native iOS and Android environments without rebuilding the app from scratch.

Introduction

While there’s plenty of theory surrounding brownfield development, practical examples are harder to find. To bridge this gap, we sought to carry out the integration in a practical setting, looking for open-source projects where we could apply brownfield migration to React Native. We chose the Mastodon app, given its availability and decentralized architecture, as our testing ground for integrating React Native into its mobile apps on both iOS and Android.

A Step-by-Step Guide to the React Native Integration

We aimed to understand how React Native 0.76 could be incorporated into the native iOS and Android apps, providing insights on how to deal with real-world integration challenges.

To explore the possibilities of brownfield integration with the latest React Native, we began by working on Mastodon’s open-source iOS app, written in Swift. The goal was to merge React Native with the native code without rebuilding the app entirely, ensuring that both platforms (iOS and Android) would be compatible with this cross-platform solution.

Fork and Set Up the Projects First

We started by creating a new repository and forking the Mastodon iOS and Android projects. The next step involved linking the fork with our React Native project using git submodules. This allowed us to manage the projects as a sub-repository.

Migrating a Brownfield iOS App to React Native

Step 1: Create package.json 

In the root of the project, we need a <rte-code>package.json<rte-code> file. The easiest way to create the file is to follow the steps outlined in the official React Native documentation on integration with existing apps. This approach will help ensure the correct versions of React Native and React will be installed. 

curl -O https://raw.githubusercontent.com/react-native-community/template/refs/heads/<version>-stable/template/package.json

Replace <react-native-version> with the version you want to integrate with your application and run the command.

Step 2: Modify the Podfile 

If a <rte-code>Podfile<rte-code> doesn't exist in your iOS project, run <rte-code>pod init<rte-code>. Then, locate the appropriate Podfile for your React Native version and copy the necessary content into your existing one. This step ensures the proper linkage of React Native’s dependencies. Remember to adjust the minimum deployment target of your app according to the version from the React Native template. You can find the corresponding version in the React Native repository (min_ios_version_supported).

Step 3: Install Pods

Once the <rte-code>Podfile<rte-code> is updated, run <rte-code>pod install<rte-code> to install the required dependencies for React Native. With this done, you're ready to move forward with the integration.

Step 4: Add the React Native Component 

Create an <rte-code>index.js<rte-code> file with a basic React Native component using <rte-code>AppRegistry.registerComponent<rte-code>. The registered component name will be used later for navigation.

Step 5: Modify AppDelegate.swift 

Since iOS blocks HTTP resource loading by default, update the <rte-code>Info.plist<rte-code> file to allow communication with the Metro server. In <rte-code>AppDelegate.swift<rte-code>, start with inheriting from <rte-code>RCTAppDelegate<rte-code> and setting <rte-code>automaticallyLoadReactNativeWindow<rte-code> to false. It will instruct React Native that the app is handling the UIWindow. You should also override all the application functions. 

The last step here is adding sourceURL and bundleURL methods used to tell React Native where it can find the JS bundle that needs to be rendered. Declare the window property to manage and display the React Native view.

<rte-code>Info.plist<rte-code> diff:

<rte-code>AppDelegate.swift<rte-code>:

Step 6: Create ReactNativeView class

Next, create a <rte-code>ReactNativeView<rte-code> class that uses <rte-code>RootViewFactory<rte-code> to create React Native views. You can read more about it in our dedicated article on brownfield integration with RootViewFactory

Step 7: Link the Button to the React Native Component 

Find the method triggered by pressing the “Join http://mastodon.social” button and replace its content with code to navigate to your React Native component. Make sure the module name matches the one registered in <rte-code>index.js<rte-code>.

Migrating a Brownfield Android App to React Native

With the iOS integration complete, the next step was to repeat the process for the Android version of the Mastodon app.

Step 1: Align the project’s build gradle with the React Native template

Let’s start with aligning the compileSdk, minSdk, ndk and buildToolsVersion to match the React Native template. To find out which versions you need, go to libs.versions.toml file in the React Native repository. We should also use autolinkLibrariesWithApp in app/build.gradle.

Step 2: Add React Native Gradle Plugin 

In the top-level <rte-code>build.gradle<rte-code>, add the React Native Gradle Plugin dependency to make it available throughout the project.

Step 3: Modify settings.gradle 

To configure dependencies and support React Native's autolinking feature, update settings.gradle by adding the React Native Gradle plugin. Sync the project with the Gradle files.

Step 4: Update AndroidManifest.xml 

Ensure the AndroidManifest includes the required permissions for Internet access and Metro server communication. Add the <rte-code>usesCleartextTraffic<rte-code> attribute and the Dev Settings Activity. It’s also important to add a new Activity with a name that is equivalent to the class name you’ll create in the next step.

You also need to set the theme of MyReactActivity to Theme.AppCompat.Light.NoActionBar (or to any non-ActionBar theme) as otherwise your application will render an ActionBar on top of your React Native screen.

Step 5: Modify the MainApplication

Update the class to integrate React Native functionality by implementing the ReactApplication interface. You’ll also need to add a ReactNativeHost, which is responsible for managing the React Native instance lifecycle, along with a few additional methods. Additionally, pass OpenSourceMergedSoMapping as a second parameter to SoLoader.init() function. It’s needed because starting from 0.76, React Native introduces libreactnative.so, which merges multiple dynamic libraries into one library, reducing app size and startup time. If you are upgrading to lower version, you don’t have to do that.

Step 6: Create React Activity 

Create a new <rte-code>ReactActivity<rte-code> class that hosts the React Native code. It’s responsible for starting a new React Native runtime and rendering the component. This activity should use the component name registered in your <rte-code>index.js file<rte-code>. After adding the activity to the AndroidManifest, sync the project with Gradle:

Step 7: Link the Button to the React Native Component 

Similarly to iOS, find the method tied to the “Join http://mastodon.social” button and overwrite it to navigate to the React Native screen. This completes the integration on Android.

Step 8: Enable the New Architecture

To enable New Architecture, add the following lines to the gradle.properties file:

Run the App on iOS and Android

To test the integration on both iOS and Android, start by running the Metro server using <rte-code>npm start<rte-code> in the project root. 

For iOS, open the Mastodon.xcworkspace file in Xcode and build the app. If everything is set up correctly, you should be able to navigate to the React Native screen. You’ll be able to switch between screens and access the Dev Menu for debugging. 

For Android, open the app in Android Studio and run it from there. If properly configured, the app should display the React Native screen and allow smooth transitions between native and React Native views on both platforms.

Conclusions

Integrating React Native into the Mastodon app offered valuable lessons in brownfield development. It demonstrated how React Native can modernize an app’s architecture while maintaining its core native performance, making it a practical solution for future scaling in both open-source and proprietary projects.

FAQ

No items found.
React Galaxy City
Get our newsletter

By subscribing to the newsletter, you give us consent to use your email address to deliver curated content. We will process your email address until you unsubscribe or otherwise object to the processing of your personal data for marketing purposes. You can unsubscribe or exercise other privacy rights at any time. For details, visit our Privacy Policy.

Callstack astronaut
Download our ebook

I agree to receive electronic communications By checking any of the boxes, you give us consent to use your email address for our direct marketing purposes, including the latest tech & biz updates. We will process your email address and names (if you have entered them into the above form) until you withdraw your consent to the processing of your names, or unsubscribe, or otherwise object to the processing of your personal data for marketing purposes. You can unsubscribe or exercise other privacy rights at any time. For details, visit our Privacy Policy.

By pressing the “Download” button, you give us consent to use your email address to send you a copy of the Ultimate Guide to React Native Optimization.