You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1008 B
26 lines
1008 B
#!/usr/bin/env bash
|
|
|
|
set -eo pipefail
|
|
|
|
DEST="$CONFIGURATION_BUILD_DIR"
|
|
RESOURCE_BUNDLE_NAME="EXConstants.bundle"
|
|
EXPO_CONSTANTS_PACKAGE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd -P)"
|
|
|
|
# For classic main project build phases integration, will be no-op to prevent duplicated app.config creation.
|
|
#
|
|
# `$PROJECT_DIR` is passed by Xcode as the directory to the xcodeproj file.
|
|
# in classic main project setup it is something like /path/to/app/ios
|
|
# in new style pod project setup it is something like /path/to/app/ios/Pods
|
|
PROJECT_DIR_BASENAME=$(basename $PROJECT_DIR)
|
|
if [ "x$PROJECT_DIR_BASENAME" != "xPods" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
# If PROJECT_ROOT is not specified, fallback to use Xcode PROJECT_DIR
|
|
PROJECT_ROOT=${PROJECT_ROOT:-"$PROJECT_DIR/../.."}
|
|
PROJECT_ROOT=${PROJECT_ROOT:-"$EXPO_CONSTANTS_PACKAGE_DIR/../.."}
|
|
|
|
cd "$PROJECT_ROOT" || exit
|
|
|
|
"${EXPO_CONSTANTS_PACKAGE_DIR}/scripts/with-node.sh" "${EXPO_CONSTANTS_PACKAGE_DIR}/scripts/getAppConfig.js" "$PROJECT_ROOT" "$DEST/$RESOURCE_BUNDLE_NAME"
|