React Native libraries often come with platform-specific (native) code. Autolinking is a mechanism that allows your project to discover and use this code.
Add a library using your favorite package manager and run the build:
# install
yarn add react-native-webview
cd ios && pod install && cd .. # CocoaPods on iOS needs this extra step
# run
yarn react-native run-ios
yarn react-native run-android
That's it. No more editing build config files to use native code.
Autolinking is a replacement for
react-native link
. If you have been using React Native before version 0.60, pleaseunlink
native dependencies if you have any from a previous install.
Each platform defines its own platforms
configuration. It instructs the CLI on how to find information about native dependencies. This information is exposed through the config
command in a JSON format. It's then used by the scripts run by the platform's build tools. Each script applies the logic to link native dependencies specific to its platform.
The native_modules.rb script required by Podfile
gets the package metadata from react-native config
during install phase and:
- Adds dependencies via CocoaPods dev pods (using files from a local path).
- Adds build phase scripts to the App project’s build phase. (see examples below)
This means that all libraries need to ship a Podspec either in the root of their folder or where the Xcode project is. Podspec references the native code that your library depends on.
The implementation ensures that a library is imported only once. If you need to have a custom pod
directive then include it above the use_native_modules!
function.
See example usage in React Native template's Podfile.
The project root is where node_modules
with react-native
is. Autolinking script assume your project root to be ".."
, relative to ios
directory. If you're in a project with custom structure, like this:
root/
node_modules
example/
ios/
you'll need to set a custom root. Pass it as an argument to use_native_modules!
function inside the targets and adjust the relatively required native_modules
path accordingly:
# example/ios/Podfile
require_relative '../../node_modules/@react-native-community/cli-platform-ios/native_modules'
target 'RNapp' do
# React pods and custom pods here...
use_native_modules!("../..")
end
The native_modules.gradle script is included in your project's settings.gradle
and app/build.gradle
files and:
- At build time, before the build script is run:
- A first Gradle plugin (in
settings.gradle
) runsapplyNativeModulesSettingsGradle
method. It uses the package metadata fromreact-native config
to add Android projects. - A second Gradle plugin (in
app/build.gradle
) runsapplyNativeModulesAppBuildGradle
method. It creates a list of React Native packages to include in the generated/android/build/generated/rn/src/main/java/com/facebook/react/PackageList.java
file.
- A first Gradle plugin (in
- At runtime, the list of React Native packages generated in step 1.2 is registered by
getPackages
method ofReactNativeHost
inMainApplication.java
.- You can optionally pass in an instance of
MainPackageConfig
when initializingPackageList
if you want to override the default configuration ofMainReactPackage
.
- You can optionally pass in an instance of
See example usage in React Native template:
The project root is where node_modules
with react-native
is. Autolinking scripts assume your project root to be ".."
, relative to android
directory. If you're in a project with custom structure, like this:
root/
node_modules
example/
android/
you'll need to set a custom root. Pass it as a second argument to applyNativeModulesSettingsGradle
and applyNativeModulesAppBuildGradle
methods and adjust the native_modules.gradle
path accordingly:
// example/android/settings.gradle
apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle");
applyNativeModulesSettingsGradle(settings, "../..")
// example/android/app/build.gradle
apply from: file("../../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle");
applyNativeModulesAppBuildGradle(project, "../..")
You’re already using Gradle, so Android support will work by default.
On the iOS side, you will need to ensure you have a Podspec to the root of your repo. The react-native-webview
Podspec is a good example of a package.json
-driven Podspec. Note that CocoaPods does not support having /
s in the name of a dependency, so if you are using scoped packages - you may need to change the name for the Podspec.
A library can add a react-native.config.js
configuration file, which will customize the defaults.
During the transition period some packages may not support autolinking on certain platforms. To disable autolinking for a package, update your react-native.config.js
's dependencies
entry to look like this:
// react-native.config.js
module.exports = {
dependencies: {
'some-unsupported-package': {
platforms: {
android: null, // disable Android platform, other platforms will still autolink if provided
},
},
},
};
We can leverage CLI configuration to make it "see" React Native libraries that are not part of our 3rd party dependencies. To do so, update your react-native.config.js
's dependencies
entry to look like this:
// react-native.config.js
module.exports = {
dependencies: {
'local-rn-library': {
root: '/root/libraries',
},
},
};