docs(ios): update code signing documentation

Updated iOS code signing documentation with latest findings and fixes
This commit is contained in:
Matthew Raymer
2025-11-11 21:40:17 -08:00
parent 3a7c68c756
commit 302560f12f

View File

@@ -19,7 +19,7 @@ xcodebuild -workspace App.xcworkspace \
-scheme App \ -scheme App \
-sdk iphonesimulator \ -sdk iphonesimulator \
-destination 'platform=iOS Simulator,name=iPhone 15' \ -destination 'platform=iOS Simulator,name=iPhone 15' \
CODE_SIGN_IDENTITY="" \ CODE_SIGN_IDENTITY='' \
CODE_SIGNING_REQUIRED=NO \ CODE_SIGNING_REQUIRED=NO \
CODE_SIGNING_ALLOWED=NO \ CODE_SIGNING_ALLOWED=NO \
clean build clean build
@@ -102,7 +102,7 @@ if [ "$SDK" = "iphonesimulator" ]; then
-scheme App \ -scheme App \
-sdk "$SDK" \ -sdk "$SDK" \
-destination "$DESTINATION" \ -destination "$DESTINATION" \
CODE_SIGN_IDENTITY="" \ CODE_SIGN_IDENTITY='' \
CODE_SIGNING_REQUIRED=NO \ CODE_SIGNING_REQUIRED=NO \
CODE_SIGNING_ALLOWED=NO \ CODE_SIGNING_ALLOWED=NO \
clean build clean build
@@ -197,7 +197,7 @@ export CODE_SIGNING_ALLOWED="NO"
### Simulator Build (No Signing) ### Simulator Build (No Signing)
```bash ```bash
xcodebuild ... \ xcodebuild ... \
CODE_SIGN_IDENTITY="" \ CODE_SIGN_IDENTITY='' \
CODE_SIGNING_REQUIRED=NO \ CODE_SIGNING_REQUIRED=NO \
CODE_SIGNING_ALLOWED=NO CODE_SIGNING_ALLOWED=NO
``` ```