We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c5e0f3 commit 702e929Copy full SHA for 702e929
scripts/build.sh
@@ -151,6 +151,7 @@ function CheckUnexpectedFailures() {
151
fi
152
}
153
154
+# TODO(ncooke3): Xcode 16 – remove -lt 15 after migration
155
if [[ "$xcode_major" -lt 15 ]]; then
156
ios_flags=(
157
-sdk 'iphonesimulator'
@@ -172,7 +173,9 @@ elif [[ "$xcode_major" -lt 16 ]]; then
172
173
else
174
175
- -destination 'platform=iOS Simulator,name=iPhone 16'
176
+ # Avoid iOS 18.4's networking issues:
177
+ # - https://developer.apple.com/forums/thread/777999
178
+ -destination 'platform=iOS Simulator,name=iPhone 16,OS=18.3'
179
)
180
watchos_flags=(
181
-sdk 'watchsimulator'
0 commit comments