|
@@ -12,11 +12,14 @@ $ npm install --save https://github.com/react-native-community/react-native-webv
|
12
|
12
|
|
13
|
13
|
React Native modules that include native Objective-C, Swift, Java, or Kotlin code have to be "linked" so that the compiler knows to include them in the app.
|
14
|
14
|
|
15
|
|
-Thankfully, there's a way to do this from the terminal with one command:
|
16
|
|
-
|
|
15
|
+This module does not require any extra step after running the link command 🎉
|
17
|
16
|
```
|
18
|
17
|
$ react-native link react-native-webview
|
19
|
18
|
```
|
|
19
|
+For Android manual installation, please refer to [this article](https://engineering.brigad.co/demystifying-react-native-modules-linking-964399ec731b) where you can find detailed step on how to link any react-native project.
|
|
20
|
+
|
|
21
|
+For iOS, while you can manually link the old way using [react-native own tutorial](https://facebook.github.io/react-native/docs/linking-libraries-ios), we find it easier to use cocoapods.
|
|
22
|
+If you wish to use cocoapods and haven't set it up yet, please instead refer to [that article](https://engineering.brigad.co/demystifying-react-native-modules-linking-ae6c017a6b4a).
|
20
|
23
|
|
21
|
24
|
_NOTE: If you ever need to uninstall React Native WebView, run `react-native unlink react-native-webview` to unlink it._
|
22
|
25
|
|