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
+6-23Lines changed: 6 additions & 23 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,13 +36,7 @@ Updating to a new version? Check the [Update Guide](#update-guide) before bumpin
36
36
cd ios && pod install &&cd ..
37
37
```
38
38
39
-
3. **For React Native >= 0.60**, simply run the command:
40
-
41
-
```bash
42
-
react-native add-instabug
43
-
```
44
-
45
-
**For React Native < 0.60**, link the bridging files in the `instabug-reactnative` package:
39
+
3. **For React Native < 0.60**, link the bridging files in the `instabug-reactnative` package:
46
40
47
41
```bash
48
42
react-native link instabug-reactnative
@@ -55,14 +49,14 @@ Updating to a new version? Check the [Update Guide](#update-guide) before bumpin
55
49
```javascript
56
50
import Instabug from 'instabug-reactnative';
57
51
```
58
-
*### iOS
59
-
Initialize it in the `constructor` or `componentWillMount`. This line will let the Instabug SDK work with the default behavior. The SDK will be invoked when the device is shaken. You can customize this behavior through the APIs.
52
+
### iOS
53
+
- Initialize it in the `constructor` or `componentWillMount`. This line will let the Instabug SDK work with the default behavior. The SDK will be invoked when the device is shaken. You can customize this behavior through the APIs.
@@ -101,18 +95,7 @@ import Instabug from 'instabug-reactnative';
101
95
* You can change the invocation event from here, simply by replacing the `"shake"` with any of the following `"button"`, `"none"`, `"screenshot"`, or `"swipe"`. You can change the primary color by replacing the `"#1D82DC"` with any color of your choice.
102
96
In the case that you are using the floating button as an invocation event, you can change the floating button edge and the floating button offset using the last two methods, by replacing `"left"` to `"right"`, and by changing the offset number.
103
97
104
-
You can find your app token by selecting the SDK tab from your [**Instabug dashboard**](https://dashboard.instabug.com/app/sdk/).
105
-
106
-
2. Make sure the following snippet is added to your project level `build.gradle`. This should be added automatically upon linking. If not, you can add it manually.
0 commit comments