Files
tipsi-stripe/example/scripts/build-ios.sh
Anton Petrov 1ab4554eae Improvements (#35)
Improvements:

*  improved test for PaymentCardTextField component
* added Spoiler component and testID util in example project
* updated root and example project structure
* created build scripts
* added tipsi eslint config
* other small improvements
2017-03-04 12:14:15 +02:00

18 lines
342 B
Bash
Executable File

#!/bin/bash
set -e
# Go to ios path
cd ios
# Run release build
xcodebuild build \
-workspace example.xcworkspace \
-scheme example \
-configuration Release \
-sdk iphonesimulator \
-destination 'platform=iOS Simulator,name=iPhone 6' \
-derivedDataPath build \
ONLY_ACTIVE_ARCH=NO \
OTHER_LDFLAGS='$(inherited) -ObjC -lc++'