2015-03-27 03:12:55 +00:00
|
|
|
---
|
2015-07-27 17:03:46 +00:00
|
|
|
id: linking-libraries-ios
|
2015-09-18 17:54:05 +00:00
|
|
|
title: Linking Libraries
|
2015-03-27 03:12:55 +00:00
|
|
|
layout: docs
|
2015-09-18 17:54:05 +00:00
|
|
|
category: Guides (iOS)
|
2015-07-27 17:03:46 +00:00
|
|
|
permalink: docs/linking-libraries-ios.html
|
2015-09-18 17:54:05 +00:00
|
|
|
next: running-on-device-ios
|
2016-07-13 21:45:53 +00:00
|
|
|
previous: native-components-ios
|
2015-03-27 03:12:55 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
Not every app uses all the native capabilities, and including the code to support
|
2015-03-31 04:22:39 +00:00
|
|
|
all those features would impact the binary size... But we still want to make it
|
2015-03-27 03:12:55 +00:00
|
|
|
easy to add these features whenever you need them.
|
|
|
|
|
|
|
|
With that in mind we exposed many of these features as independent static libraries.
|
|
|
|
|
2015-03-31 04:22:39 +00:00
|
|
|
For most of the libs it will be as simple as dragging two files, sometimes a third
|
2015-03-27 03:12:55 +00:00
|
|
|
step will be necessary, but no more than that.
|
|
|
|
|
|
|
|
_All the libraries we ship with React Native live on the `Libraries` folder in
|
2015-05-18 01:41:40 +00:00
|
|
|
the root of the repository. Some of them are pure JavaScript, and you only need
|
2015-03-27 03:12:55 +00:00
|
|
|
to `require` it. Other libraries also rely on some native code, in that case
|
|
|
|
you'll have to add these files to your app, otherwise the app will throw an
|
|
|
|
error as soon as you try to use the library._
|
|
|
|
|
|
|
|
## Here the few steps to link your libraries that contain native code
|
|
|
|
|
2015-12-15 16:55:38 +00:00
|
|
|
### Automatic linking
|
|
|
|
|
|
|
|
#### Step 1
|
|
|
|
|
|
|
|
Install a library with native dependencies:
|
|
|
|
```bash
|
2015-12-20 07:40:09 +00:00
|
|
|
$ npm install <library-with-native-dependencies> --save
|
2015-12-15 16:55:38 +00:00
|
|
|
```
|
|
|
|
|
2016-09-23 18:47:51 +00:00
|
|
|
**Note:** _`--save` or `--save-dev` flag is very important for this step. React Native will link
|
2015-12-15 16:55:38 +00:00
|
|
|
your libs based on `dependencies` and `devDependencies` in your `package.json` file._
|
|
|
|
|
2016-09-23 18:47:51 +00:00
|
|
|
#### Step 2
|
2015-12-15 16:55:38 +00:00
|
|
|
|
|
|
|
Link your native dependencies:
|
|
|
|
```bash
|
2016-09-23 18:47:51 +00:00
|
|
|
$ react-native link
|
2015-12-15 16:55:38 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Done! All libraries with a native dependencies should be successfully linked to your iOS/Android project.
|
|
|
|
|
|
|
|
### Manual linking
|
|
|
|
|
|
|
|
#### Step 1
|
2015-03-27 03:12:55 +00:00
|
|
|
|
|
|
|
If the library has native code, there must be a `.xcodeproj` file inside it's
|
|
|
|
folder.
|
2015-10-14 23:44:36 +00:00
|
|
|
Drag this file to your project on Xcode (usually under the `Libraries` group
|
2015-03-27 03:12:55 +00:00
|
|
|
on Xcode);
|
|
|
|
|
2016-02-11 14:16:34 +00:00
|
|
|
![](img/AddToLibraries.png)
|
2015-03-28 19:22:50 +00:00
|
|
|
|
2015-12-15 16:55:38 +00:00
|
|
|
#### Step 2
|
2015-03-27 03:12:55 +00:00
|
|
|
|
|
|
|
Click on your main project file (the one that represents the `.xcodeproj`)
|
|
|
|
select `Build Phases` and drag the static library from the `Products` folder
|
2015-05-07 22:05:28 +00:00
|
|
|
inside the Library you are importing to `Link Binary With Libraries`
|
2015-03-27 03:12:55 +00:00
|
|
|
|
2016-02-11 14:16:34 +00:00
|
|
|
![](img/AddToBuildPhases.png)
|
2015-03-28 19:22:50 +00:00
|
|
|
|
2015-12-15 16:55:38 +00:00
|
|
|
#### Step 3
|
2015-03-27 03:12:55 +00:00
|
|
|
|
2015-03-28 19:22:50 +00:00
|
|
|
Not every library will need this step, what you need to consider is:
|
|
|
|
|
|
|
|
_Do I need to know the contents of the library at compile time?_
|
|
|
|
|
2015-05-18 01:41:40 +00:00
|
|
|
What that means is, are you using this library on the native side or only in
|
|
|
|
JavaScript? If you are only using it in JavaScript, you are good to go!
|
2015-03-28 19:22:50 +00:00
|
|
|
|
2015-03-31 04:22:39 +00:00
|
|
|
This step is not necessary for libraries that we ship with React Native with the
|
2016-05-27 17:14:12 +00:00
|
|
|
exception of `PushNotificationIOS` and `Linking`.
|
2015-03-28 19:22:50 +00:00
|
|
|
|
|
|
|
In the case of the `PushNotificationIOS` for example, you have to call a method
|
2015-12-10 23:27:46 +00:00
|
|
|
on the library from your `AppDelegate` every time a new push notification is
|
2015-03-28 19:22:50 +00:00
|
|
|
received.
|
2015-03-27 03:12:55 +00:00
|
|
|
|
2015-03-28 19:22:50 +00:00
|
|
|
For that we need to know the library's headers. To achieve that you have to go
|
|
|
|
to your project's file, select `Build Settings` and search for `Header Search
|
2015-09-02 22:09:12 +00:00
|
|
|
Paths`. There you should include the path to your library (if it has relevant
|
2015-03-28 19:22:50 +00:00
|
|
|
files on subdirectories remember to make it `recursive`, like `React` on the
|
|
|
|
example).
|
2015-03-27 03:12:55 +00:00
|
|
|
|
2016-02-11 14:16:34 +00:00
|
|
|
![](img/AddToSearchPaths.png)
|