Skip to content

Raise minimum iOS deployment target to 15 - #16

Open
BugorBN wants to merge 1 commit into
mattt:mainfrom
BugorBN:raise-ios-deployment-target-15
Open

Raise minimum iOS deployment target to 15#16
BugorBN wants to merge 1 commit into
mattt:mainfrom
BugorBN:raise-ios-deployment-target-15

Conversation

@BugorBN

@BugorBN BugorBN commented Jun 8, 2026

Copy link
Copy Markdown

Resolves #15.

Xcode 27 beta no longer supports iOS deployment targets below iOS 15. Because Package.swift declares .iOS(.v13), building Replay under Xcode 27 emits a the iOS deployment target ... is set to 13.0, but the range of supported deployment target versions is 15.0 to ... warning.

This bumps the iOS platform floor from .iOS(.v13) to .iOS(.v15) so the package builds cleanly under Xcode 27. No source changes are required — Replay does not use any API gated below iOS 15.

Change

-        .iOS(.v13),
+        .iOS(.v15),

Xcode 27 beta no longer supports iOS deployment targets below 15, so the
.iOS(.v13) declaration produces a deployment-target warning on every build.
Bump the iOS platform floor to .iOS(.v15) to build cleanly under Xcode 27.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Support Xcode 27: raise minimum iOS deployment target to 15

1 participant