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
+46Lines changed: 46 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,23 @@
1
1
## Who am I
2
2
3
+
This is demo repo is used by Solution Engineers when demo'ing Sentry's [React Native](https://docs.sentry.io/platforms/react-native) SDK's capabilties.
4
+
5
+
## Versions Summary:
6
+
7
+
| dependency | version
8
+
| ------------- |:-------------:|
9
+
| react-native | 0.64.0 |
10
+
| gradle | 6.7 |
11
+
| react | 16.13.1 |
12
+
| sentry/react-native | 2.4.0 |
13
+
14
+
15
+
16
+
17
+
18
+
19
+
20
+
3
21
This is demo repo is used by Solution Engineers when demo'ing Sentry's [React Native](https://docs.sentry.io/platforms/react-native) SDK's capabilties.
4
22
5
23
## Where do I begin
@@ -28,6 +46,34 @@ cd ios
28
46
pod install
29
47
```
30
48
49
+
Make sure to have Internet access enabled on your Android emulator. If you can't access the browser you may need to launch your emulator with the below commands:
50
+
51
+
```
52
+
emulator -list-avds
53
+
54
+
emulator @{YourEmulator} -dns-server 8.8.8.8
55
+
```
56
+
57
+
If you are experiencing issues with running the following launch command:
58
+
59
+
If the app launches and suddenly crashes you may need to reinstall your node package with this command:
60
+
61
+
```
62
+
rm -rf node_modules
63
+
64
+
npm install
65
+
```
66
+
67
+
If all else fails and you seem to be getting a weird error related to IllegalAccessErrors or anything else you may need to rebuild your Android and iOS folders using the following (just make sure to grab the sentry.properties files, build.gradle files, and pod files from Github afterwards):
0 commit comments