From 6fb65256ff14fde66daf91d5afdb47d8ee273470 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 7 Nov 2025 23:11:43 +0000 Subject: [PATCH] Fix iOS 16 compatibility errors in ErrorsTabView Update Package.swift to require iOS 16.0 as minimum deployment target. This resolves compilation errors where iOS 16+ APIs from the Charts framework were being used in ErrorsTabView.swift while the package declared iOS 15 as minimum, causing SPM builds to fail. The Xcode project already had IPHONEOS_DEPLOYMENT_TARGET set to 16, but Package.swift needed to match to ensure consistency across both build systems. --- Package.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Package.swift b/Package.swift index 203eb6a..01f7bca 100644 --- a/Package.swift +++ b/Package.swift @@ -6,7 +6,7 @@ import PackageDescription let package = Package( name: "BackgroundTime", platforms: [ - .iOS(.v15), + .iOS(.v16), .macOS(.v12), .tvOS(.v15), .watchOS(.v8),