forked from Ivasoft/mattermost-mobile
* Upgrade to RN 0.48.1 * Update deps to be exact * Fix tests * Remove unneeded code from setup and add socketcluster dep * Fix drawer pan issue * Fix bridge issues on iOS * Upgrade to RN 0.48.3 * Search to use RN SectionList
16 lines
443 B
Bash
Executable File
16 lines
443 B
Bash
Executable File
#!/bin/sh
|
|
|
|
export NODE_BINARY=node
|
|
|
|
if [[ "${SENTRY_ENABLED}" = "true" ]]; then
|
|
echo "Sentry native integration is enabled"
|
|
|
|
./makeSentryProperties.sh
|
|
|
|
export SENTRY_PROPERTIES=sentry.properties
|
|
../node_modules/sentry-cli-binary/bin/sentry-cli react-native xcode ../node_modules/react-native/scripts/react-native-xcode.sh
|
|
else
|
|
echo "Sentry native integration is not enabled"
|
|
../node_modules/react-native/scripts/react-native-xcode.sh
|
|
fi
|