You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-11Lines changed: 7 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,12 @@
4
4
## Installation
5
5
This section explains how to install Instabug SDK into your React Native application.
6
6
7
-
1. Open the terminal and navigate to your React Native Directory. Then run the following command.
7
+
1. Add Instabug SDK to your iOS project by adding this to your [**Podfile**](https://guides.cocoapods.org/syntax/podfile.html) (You can skip this step if you are building an Android app only).
8
+
```bash
9
+
pod 'Instabug', '~> 7.0'
10
+
```
11
+
12
+
2. Open the terminal and navigate to your React Native Directory. Then run the following command.
8
13
9
14
```bash
10
15
npm install instabug-reactnative
@@ -15,19 +20,10 @@ or
15
20
yarn add instabug-reactnative
16
21
```
17
22
18
-
2. Link the bridging files in the npm package to the ios project use the following command.
23
+
3. Link the bridging files in the npm package to the ios project use the following command.
19
24
```bash
20
25
react-native link instabug-reactnative
21
26
```
22
-
3. Add Instabug SDK to your iOS project by adding this to your [**Podfile**](https://guides.cocoapods.org/syntax/podfile.html) (You can skip this step if you are building an Android app only).
23
-
```bash
24
-
pod 'Instabug', '~> 7.0'
25
-
```
26
-
4.Then run the following command (You can skip this step if you are building an Android app only).
27
-
```bash
28
-
pod install
29
-
```
30
-
CocoaPods will download and install the SDK and add all the required dependencies into your ios project.
31
27
32
28
## Using Instabug
33
29
1. To start using Instabug, import it into your `index.ios.js` and `index.android.js` file.
0 commit comments