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