Skip to content

Instantly share code, notes, and snippets.

@mrugeshtank
Created February 21, 2020 09:56
Show Gist options
  • Save mrugeshtank/6ce0c55f2d81264142d94c5521bb0ea0 to your computer and use it in GitHub Desktop.
Save mrugeshtank/6ce0c55f2d81264142d94c5521bb0ea0 to your computer and use it in GitHub Desktop.
This script will remove settings bundle from iOS app when configuration is Release
BUILD_APP_DIR=${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.app
if [ "$CONFIGURATION" == "Release" ]; then
rm -Rf $BUILD_APP_DIR/Settings.bundle
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment