Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

📚 Guide: Getting Started with The New Architecture (a.k.a. the Playbook) #2879

Merged
merged 39 commits into from
Feb 17, 2022
Merged
Show file tree
Hide file tree
Changes from 31 commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
6f1bc9f
Initial Draft of the New Architecture Playbook
cortinico Dec 9, 2021
e9c2093
Fix c++ codeblocks not rendering correctly
cortinico Dec 10, 2021
a063580
Fix Android.mk containing wrong wildcards
cortinico Dec 10, 2021
327b534
Remove Markdown exports artifacts
cortinico Dec 31, 2021
7bceacd
Fix missing parenthesis in section header
cortinico Dec 31, 2021
f02dc3f
Renamed section header as it was incomplete
cortinico Dec 31, 2021
c280d74
Removed canCreateTurboModule as it was not used
cortinico Dec 31, 2021
0d3f6c7
Fix indententation and add imports to MyComponentsRegistry.java
cortinico Dec 31, 2021
721cdbb
Add missing import for MyComponentsRegistry.h
cortinico Dec 31, 2021
f465828
Fix the broken table
cortinico Dec 31, 2021
06d8f86
s/two/three arguments
cortinico Dec 31, 2021
6f5cb30
Fix comments inside podfile
cortinico Dec 31, 2021
334237a
split The New Architecture guide into few pages (#2882)
Simek Jan 2, 2022
440ca3c
Fix wrong import for ./RNTMyNativeViewNativeComponent
cortinico Jan 6, 2022
445d34c
Fix import for codegenNativeCommands
cortinico Jan 6, 2022
d268d98
Add a banner for TypeScript support
cortinico Jan 6, 2022
d74a0fb
Do not sound prescriptive with 'you will be using flow'
cortinico Jan 6, 2022
b6a0460
React concurrent mode -> React 18
cortinico Jan 6, 2022
988bd80
Add a banner on homepage about the number of manual steps
cortinico Jan 6, 2022
1765554
Fix typo on Enabling TurboModule section title
cortinico Jan 10, 2022
ccc1e38
code formatting, admonitions and small tweaks (#2922)
Simek Jan 14, 2022
60a781b
Use descriptive component names and fix use of ref (#2935)
sammy-SC Jan 19, 2022
fc923c3
Playbook => Guide
cortinico Jan 19, 2022
9349450
Use implicit dependency substitution for the Gradle Plugin
cortinico Jan 20, 2022
112a726
Specify reactRoot and codegenDir in the App setup
cortinico Jan 20, 2022
9c95c27
Add a patch for configureNdkBuild not depending on preBuild
cortinico Jan 21, 2022
a84b924
Add the getTurboModule method
cortinico Jan 21, 2022
dde3d5d
Copy the warning banner on all the pages
cortinico Jan 21, 2022
8b142a5
Update pod install to specify RCT_NEW_ARCH_ENABLED
cortinico Jan 21, 2022
249d346
HermesExecutorFactory header lives inside reacthermes/ and not React/
cortinico Jan 21, 2022
588cb0f
Fix broken jsExecutorFactoryForBridge iOS
cortinico Jan 26, 2022
c280eef
Bump used nightly version to 0.0.0-20220201-2008-79975d146
cortinico Feb 3, 2022
ae72920
Clarify the react-native-codegen version to use
cortinico Feb 3, 2022
62e21f7
Suggest to use :app:externalNativeBuildDebug instead of Release
cortinico Feb 3, 2022
11d52bf
Put LOCAL_SHARED_LIBRARIES on Android.mk on separate lines
cortinico Feb 3, 2022
5a199aa
Update docs/new-architecture-app-renderer-ios.md
cortinico Feb 4, 2022
dcde420
Remove unnecessary duplicated `pod install`
cortinico Feb 4, 2022
fbf0e17
Setup a New Architecture Troubleshooting page
cortinico Feb 4, 2022
ef1adcb
Fix lint failures on troubleshooting section
cortinico Feb 4, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
202 changes: 202 additions & 0 deletions docs/new-architecture-app-intro.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,202 @@
---
id: new-architecture-app-intro
title: Prerequisites for Applications
---

:::caution

This documentation is still **experimental** and details are subject to changes as we iterate. Feel free to share your feedback on the [react-native-website PR](https://github.com/facebook/react-native-website) for this page.

Moreover, it contains several **manual steps**. Please note that this won't be representative of the final developer experience once the New Architecture is stable. We're working on tools, templates and libraries to help you get started fast on the New Architecture, without having to go through the whole setup.

:::

There’s a few prerequisites that should be addressed before the new architecture is enabled in your application.

## Use a React Native nightly release

At this time, you must use a React Native nightly release in order to get access to the most up to date changes. Eventually, we will recommend targeting a minimum stable open source release.

This guide is written with the expectation that you’re using a specific nightly release. As new revisions of this guide are released, the target nightly release may be updated. The specific nightly version that we will be using throughout the rest of this guide is version `0.0.0-20211205-2008-583471bc4`.

Before upgrading your app to a specific nightly release, we recommend upgrading your app to the latest open source release. By upgrading to a published open source release first, you will be able to take advantage of tools like the [upgrade helper](https://react-native-community.github.io/upgrade-helper/) to determine what other changes may be required for your project.

As of this writing, the latest stable release is `0.66.3`. Once you have upgraded your project to this version successfully, you may proceed to targeting the `0.0.0-20211102-2008-8fef52035` nightly release. You may target this nightly release the same way you’d target any other version of React Native:

```bash
yarn add react-native@0.0.0-20211205-2008-583471bc4
```

## Install react-native-codegen v0.0.12 or above

Make sure that you have the most recent react-native-codegen package; otherwise, you might see an error like `***TypeError: RNCodegen.generateFromSchemas is not a function.***`

```bash
yarn add react-native-codegen@0.0.12
```

If you are still getting the error, you may have an older version installed under node_modules/react-native/node_modules. You can remove that or reinstall everything in node_modules to fix the problem.

### Android specifics

Using the new architecture on Android has some prerequisites that you need to meet:

1. Using Gradle 7.x and Android Gradle Plugin 7.x
2. Using the **new React Gradle Plugin**
3. Building `react-native` **from Source**

You can update Gradle by running:

```bash
cd android && ./gradlew wrapper --gradle-version 7.3 --distribution-type=all
```

While the AGP version should be updated inside the **top level** `build.gradle` file at the `com.android.tools.build:gradle` dependency line.

If you’re set with it, let’s now install the new Gradle plugin which is distributed through a NPM package called [**`react-native-gradle-plugin`**](https://www.npmjs.com/package/react-native-gradle-plugin). You can do so with:
cortinico marked this conversation as resolved.
Show resolved Hide resolved

```bash
yarn add react-native-gradle-plugin
cortinico marked this conversation as resolved.
Show resolved Hide resolved
```

You can control if you have the package already installed by doing:

```bash
ls -la node_modules/react-native-gradle-plugin
```

Now, you can edit your **top level** `settings.gradle` file to include the following line at the end of the file:

```groovy
includeBuild('../node_modules/react-native-gradle-plugin')

include(":ReactAndroid")
project(":ReactAndroid").projectDir = file('../node_modules/react-native/ReactAndroid')
```

Then, edit your **top-level Gradle file** to include the highlighted lines:

```groovy
buildscript {
// ...
dependencies {
// Make sure that AGP is at least at version 7.x
classpath("com.android.tools.build:gradle:7.0.4")

// Add those lines
classpath("com.facebook.react:react-native-gradle-plugin")
classpath("de.undercouch:gradle-download-task:4.1.2")
}
}
```

Edit your **module-level** **Gradle file** (usually `app/build.gradle[.kts]`) to include the following:

```groovy
apply plugin: "com.android.application"

// Add those lines
apply plugin: "com.facebook.react"
// Add those lines as well
react {
reactRoot = rootProject.file("../node_modules/react-native/")
codegenDir = rootProject.file("../node_modules/react-native-codegen/")
}
```

Finally, it’s time to update your project to use the `react-native` dependency from source, rather than using a precompiled artifact from the NPM package. This is needed as the later setup will rely on building the native code from source.

Let’s edit your **module level** `build.gradle` (the one inside `app/` folder) and change the following line:

```groovy
dependencies {
// Replace this:
implementation "com.facebook.react:react-native:+" // From node_modules
// With this:
implementation project(":ReactAndroid") // From node_modules
```

## Use Hermes

Hermes is an open-source JavaScript engine optimized for React Native. We highly recommend using Hermes in your application. With Hermes enabled, you will be able to use the JavaScript debugger in Flipper to directly debug your JavaScript code.

Please [follow the instructions on the React Native website](hermes) in order to enable Hermes in your application.

:::caution

**iOS:** If you opt out of using Hermes, you will need to replace `HermesExecutorFactory` with `JSCExecutorFactory` in any examples used throughout the rest of this guide.

:::

## iOS: Enable C++17 language feature support

Your Xcode project settings need to be updated to support C++17 language features.

**Instructions**

1. Select your project in the Project navigator on the left (e.g. MyXcodeApp)
2. Then, make sure your project is selected in the center pane (as opposed to a particular target in your project, e.g. MyXcodeApp under Project, not under Targets).
3. Go to Build Settings
4. Search for C++ Language Dialect or CLANG_CXX_LANGUAGE_STANDARD
5. Make sure **C++17** is selected from the dropdown menu (or enter "c++17" directly into the value box).

If done correctly, your diff will show the following changes to your project file:

```ruby
CLANG_CXX_LANGUAGE_STANDARD = "c++17"
```

:::info

Your project should also be configured to support Folly. This should be done automatically once the library dependency is picked up, so no further changes to your project are necessary.

:::

## iOS: Use Objective-C++ (`.mm` extension)

TurboModules can be written using Objective-C or C++. In order to support both cases, any source files that include C++ code should use the `.mm` file extension. This extension corresponds to Objective-C++, a language variant that allows for the use of a combination of C++ and Objective-C in source files.

:::info

Use Xcode to rename existing files to ensure file references persist in your project. You might need to clean the build folder (_Project → Clean Build Folder_) before re-building the app. If the file is renamed outside of Xcode, you may need to click on the old `.m` file reference and Locate the new file.

:::

## iOS: TurboModules: Ensure your App Provides an `RCTCxxBridgeDelegate`

In order to set up the TurboModule system, you will add some code to interact with the bridge in your AppDelegate. Before you start, go ahead and rename your AppDelegate file to use the `.mm` extension.

Now you will have your AppDelegate conform to `RCTCxxBridgeDelegate`. Start by adding the following imports at the top of your AppDelegate file:

```objc
#import <reacthermes/HermesExecutorFactory.h>
#import <React/RCTCxxBridgeDelegate.h>
#import <React/RCTJSIExecutorRuntimeInstaller.h>
```

Then, declare your app delegate as a `RCTCxxBridgeDelegate` provider:

```objc
@interface AppDelegate () <RCTCxxBridgeDelegate> {
// ...
}
@end
```

To conform to the `RCTCxxBridgeDelegate` protocol, you will need to implement the `jsExecutorFactoryForBridge:` method. Typically, this is where you would return a `JSCExecutorFactory` or `HermesExecutorFactory`, and we will use it to install our TurboModules bindings later on.

You can implement the `jsExecutorFactoryForBridge:` method like this:

```objc
#pragma mark - RCTCxxBridgeDelegate

- (std::unique_ptr<facebook::react::JSExecutorFactory>)jsExecutorFactoryForBridge:(RCTBridge *)bridge
cortinico marked this conversation as resolved.
Show resolved Hide resolved
{
return std::make_unique<facebook::react::HermesExecutorFactory>(facebook::react::RCTJSIExecutorRuntimeInstaller([bridge](facebook::jsi::Runtime &runtime) {
if (!bridge) {
return;
}
})
);
}
```