mirror of
https://github.com/zhigang1992/tipsi-stripe.git
synced 2026-06-12 09:18:29 +08:00
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
18 lines
342 B
Bash
Executable File
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++'
|