Created
September 10, 2020 11:52
-
-
Save eonil/55229c73f6b58f8730da61224e84ecf2 to your computer and use it in GitHub Desktop.
How to build iOS app project without signing with simulator test.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd TestApp1 | |
DEST="platform=iOS Simulator,name=iPhone 8,OS=13.6" | |
SIGNFLAGS="CODE_SIGN_IDENTITY= CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO" | |
xcodebuild clean build test -scheme TestApp1 -sdk iphonesimulator -destination "$DEST" $SIGNFLAGS | |
~ | |
~ | |
~ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment