forked from Ivasoft/mattermost-mobile
* MM-9494 & MM-13888 Tapping with the keyboard opened executes the action & iOS iteractive keyboard * Fix tests * feedback review * add new line at the end of file * feedback review and added todo list * Track interactive dismiss keyboard and set scrollview bounds natively * Fix snapshots * Fastlane default to current branch when no BRANCH_TO_BUILD is set * Set NODE_OPTIONS in ios build script * Rebind scrollview when channel gets first set of posts * Keep scrolling momentum on keyboard close * Update react-native-keyboard-tracking-view * Fix ScrollView offset with keyboard-tracking * Fix offset while dragging the keyboard * Allow action on channel drawer on tablets * Fix typo Co-Authored-By: Saturnino Abril <saturnino.abril@gmail.com> * Fix indentation
17 lines
414 B
Bash
Executable File
17 lines
414 B
Bash
Executable File
#!/bin/sh
|
|
|
|
export NODE_OPTIONS=--max_old_space_size=12000
|
|
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/bin/sentry-cli react-native xcode ./react-native-xcode.sh
|
|
else
|
|
echo "Sentry native integration is not enabled"
|
|
./react-native-xcode.sh
|
|
fi
|