* objective-C share extension * MattermostBucket module to share data between the main app and the extension * middleware that shares the data between the main app and the extension * Fix setState when safe area in unmounted * Share extension for iOS * Fastlane changes to include iOS share extension * Fix unit test * Feedback review * define proptypes for icons
15 lines
373 B
Bash
Executable file
15 lines
373 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 ./react-native-xcode.sh
|
|
else
|
|
echo "Sentry native integration is not enabled"
|
|
./react-native-xcode.sh
|
|
fi
|