npm install --save react-native-navigation@alpha
Make sure your Xcode is updated. We recommend editing
.h
and.m
files in Xcode as the IDE will usually point out common errors.
In Xcode, in Project Navigator (left pane), right-click on the Libraries
> Add files to [project name]
. Add node_modules/react-native-navigation/lib/ios/ReactNativeNavigation.xcodeproj
(screenshots).
In Xcode, in Project Navigator (left pane), click on your project (top), then click on your target row (on the “project and targets list”, which is on the left column of the right pane) and select the Build Phases
tab (right pane). In the Link Binary With Libraries
section add libReactNativeNavigation.a
(screenshots).
In Xcode, you will need to edit this file: AppDelegate.m
. This function is the main entry point for your app:
```objectivec
Its content should look like this:
```objectivec
#import "AppDelegate.h"
#import <React/RCTBundleURLProvider.h>
#import <React/RCTRootView.h>
#import <ReactNativeNavigation/ReactNativeNavigation.h>
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
NSURL *jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index.ios" fallbackResource:nil];
[ReactNativeNavigation bootstrap:jsCodeLocation launchOptions:launchOptions];
return YES;
}
@end
Make sure your Android Studio installation is updated. We recommend editing
gradle
andjava
files in Android Studio as the IDE will suggest fixes and point out errors, this way you avoid most common pitfalls.
android/settings.gradle
:include ':react-native-navigation'
project(':react-native-navigation').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-navigation/lib/android/app/')
react-native-navigation supports multiple React Native versions. Target the React Native version required by your project by specifying the RNN build flavor you require.
Available options:
reactNative51
: Support for React Native 0.51-0.54reactNative55
: Support for React Native 0.55reactNative56
: Support for React Native 0.56 and above
For example: To target React Native 0.56
Replace the following line in step 2.2:
missingDimensionStrategy "RNN.reactNativeVersion", "reactNative51"
with:
missingDimensionStrategy "RNN.reactNativeVersion", "reactNative56"
Make a choice in step 2.3 to alter your Android run-command (prefered) or ignore the unused buildvariants in your root build.gradle file.
android/build.gradle
:buildscript {
repositories {
+ google()
+ mavenLocal()
+ mavenCentral()
+ jcenter()
}
dependencies {
+ classpath 'com.android.tools.build:gradle:3.0.1'
- classpath 'com.android.tools.build:gradle:2.2.3'
}
}
allprojects {
repositories {
+ google()
+ mavenCentral()
+ mavenLocal()
jcenter()
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url "$rootDir/../node_modules/react-native/android"
}
+ maven { url 'https://jitpack.io' }
}
}
android/app/build.gradle
.android {
compileSdkVersion 25
buildToolsVersion "27.0.3"
defaultConfig {
minSdkVersion 19
targetSdkVersion 25
missingDimensionStrategy "RNN.reactNativeVersion", "reactNative51" // <- See note above for further instruction regarding compatibility with other React Native versions
...
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
...
}
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation "com.android.support:appcompat-v7:25.4.0"
implementation "com.facebook.react:react-native:+"
implementation project(':react-native-navigation')
}
Now that you’ve specified the RNN flavor you need to compile acording to the installed React Native version, you need to ignore the other flavors RNN provides.
The preferable option: Use the configuration specified in the app
module. The RNN flavor you would like to build is specified in app/build.gradle
- therefore in order to compile only that flavor, instead of building your entire project using ./gradlew assembleDebug
, you should instruct gradle to build the app module: ./gradlew app:asembleDebug
. The easiest way is to add a package.json command to build and install your debug Android APK since the RN-CLI run-android command will no longer be of use.
"scripts": {
"run-android": "cd ./android && ./gradlew app:assembleDebug && ./gradlew installDebug"
}
Alternatively, explicitly ignore unwanted flavors in your project’s root build.gradle
. (Note: As more build variants come available in the future, you will need to adjust this list. While this option lets you keep the CLI command react-native run-android
it comes at a cost of future upkeep.)
```diff
+subprojects { subproject ->
afterEvaluate {
if ((subproject.plugins.hasPlugin(‘android’) || subproject.plugins.hasPlugin(‘android-library’))) {
android {
variantFilter { variant ->
def names = variant.flavors*.name
if (names.contains(“reactNative51”) || names.contains(“reactNative55”)) { // <- See note above for further instruction regarding compatibility with other React Native versions
// Gradle ignores any variants that satisfy the conditions above.
setIgnore(true)
}
}
}
}
} +} ```
android/gradle/wrapper/gradle-wrapper.properties
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
-distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
gradle.properties
and disable incremental resource processing+# Disable incremental resource processing as it broke release build
+android.enableAapt2=false
MainActivity.java
MainActivity.java
should extend com.reactnativenavigation.NavigationActivity
instead of ReactActivity
.
This file can be located in android/app/src/main/java/com/yourproject/
.
import com.reactnativenavigation.NavigationActivity;
public class MainActivity extends NavigationActivity {
}
If you have any react-native related methods, you can safely delete them.
MainApplication.java
, add the followingimport com.reactnativenavigation.NavigationApplication;
public class MainApplication extends NavigationApplication {
@Override
public boolean isDebug() {
return BuildConfig.DEBUG;
}
@Override
public List<ReactPackage> createAdditionalReactPackages() {
return Arrays.<ReactPackage>asList(
// eg. new VectorIconsPackage()
);
}
}
Make sure that isDebug
method is implemented.
AndroidManifest.xml
and set application
android:name value to .MainApplication
<application
android:name=".MainApplication"
...
/>
Some of your dependencies might require a different version of one of Google’s support library packages. This results in compilation errors similar to this:
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:preDebugBuild'.
> Android dependency 'com.android.support:design' has different version for the compile (25.4.0) and runtime (26.1.0) classpath. You should manually set the same version via DependencyResolution
To resolve these conflicts, add the following to your app/build.gradle
:
android {
...
}
configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
def requested = details.requested
if (requested.group == 'com.android.support' && requested.name != 'multidex') {
details.useVersion "25.4.0" // <- Change this to whatever version you're using
}
}
}
dependencies {
...
implementation 'com.android.support:design:25.4.0'
implementation 'com.android.support:appcompat-v7:25.4.0'
}