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: src/collections/_documentation/clients/react-native/manual-setup.md
+47-3Lines changed: 47 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -78,9 +78,21 @@ symbols for all build variants.
78
78
79
79
Note that uploading of debug simulator builds by default is disabled for speed reasons. If you do want to also generate debug symbols for debug builds you can pass `--allow-fetch` as a parameter to `react-native-xcode` in the above mentioned build phase.
80
80
81
-
### Using node with nvm
81
+
### Using node with nvm or notion
82
82
83
-
If you are using nvm, Xcode seems to have problems locating the default node binary. In that case you should change the scripts to this:
83
+
If you are using nvm or notion, Xcode seems to have problems locating the default node binary. In that case you should change the scripts to this:
84
+
85
+
Build failure in Xcode looks something like:
86
+
87
+
```bash
88
+
dyld: Library not loaded: /usr/local/opt/icu4c/lib/libicui18n.62.dylib
89
+
Referenced from: /usr/local/bin/node
90
+
Reason: image not found
91
+
```
92
+
93
+
Change the run scripts in Xcode to:
94
+
95
+
#### Bundle React Native code and images
84
96
85
97
```bash
86
98
# First set the path to sentry.properties
@@ -100,12 +112,44 @@ if [[ -x "$HOME/.nodenv/bin/nodenv" ]]; then
0 commit comments