From e6b69e960a37584b5694ed19635df3ddeb225491 Mon Sep 17 00:00:00 2001 From: Kevin Suhajda <68225534+kevin-suhajda@users.noreply.github.com> Date: Mon, 25 Nov 2024 08:14:09 +0000 Subject: [PATCH] Update ios-simulator-builds.md (#2850) Add addtional build paramaters for valid simulator builds. --- content/yaml-code-signing/ios-simulator-builds.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/content/yaml-code-signing/ios-simulator-builds.md b/content/yaml-code-signing/ios-simulator-builds.md index 3990d16d..46543592 100644 --- a/content/yaml-code-signing/ios-simulator-builds.md +++ b/content/yaml-code-signing/ios-simulator-builds.md @@ -20,6 +20,9 @@ Adjust your build script to use this commands instead: xcodebuild build \ -workspace "MyXcodeWorkspace.xcworkspace" \ -scheme "MyScheme" \ + -sdk iphonesimulator \ + -destination 'platform=iOS Simulator,name=iPhone 15 Pro,OS=18.0' \ + -configuration Debug \ CODE_SIGN_IDENTITY="" \ CODE_SIGNING_REQUIRED=NO \ CODE_SIGNING_ALLOWED=NO @@ -28,6 +31,9 @@ Adjust your build script to use this commands instead: # xcodebuild build \ # -project ""MyXcodeProject.xcodeproj" \ # -scheme "MyScheme" \ + # -sdk iphonesimulator \ + # -destination 'platform=iOS Simulator,name=iPhone 15 Pro,OS=18.0' \ + # -configuration Debug \ # CODE_SIGN_IDENTITY="" \ # CODE_SIGNING_REQUIRED=NO \ # CODE_SIGNING_ALLOWED=NO @@ -90,7 +96,7 @@ workflows: -workspace "$XCODE_WORKSPACE" \ -scheme "$XCODE_SCHEME" \ -sdk iphonesimulator \ - -destination 'platform=iOS Simulator,name=iPhone 14 Pro,OS=16.2' \ + -destination 'platform=iOS Simulator,name=iPhone 15 Pro,OS=18.0' \ -configuration Debug \ CODE_SIGN_IDENTITY="" \ CODE_SIGNING_REQUIRED=NO \ @@ -138,4 +144,4 @@ workflows: $DOTNET dotnet build -f net7.0-ios -c Debug -o ../artifacts artifacts: - ./artifacts/*.app -{{< /highlight >}} \ No newline at end of file +{{< /highlight >}}