From 446cdde3851a56b9c9558875c39e37fe2c2d12c2 Mon Sep 17 00:00:00 2001 From: takehilo Date: Sat, 9 Mar 2024 14:18:05 +0900 Subject: [PATCH] change Deployment target to iOS17 --- App/TCAWorkshop.xcodeproj/project.pbxproj | 4 ++-- Package.swift | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/App/TCAWorkshop.xcodeproj/project.pbxproj b/App/TCAWorkshop.xcodeproj/project.pbxproj index dceb7fa..d0ca8ef 100644 --- a/App/TCAWorkshop.xcodeproj/project.pbxproj +++ b/App/TCAWorkshop.xcodeproj/project.pbxproj @@ -299,7 +299,7 @@ "INFOPLIST_KEY_UIStatusBarStyle[sdk=iphonesimulator*]" = UIStatusBarStyleDefault; INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; - IPHONEOS_DEPLOYMENT_TARGET = 16.6; + IPHONEOS_DEPLOYMENT_TARGET = 17.0; LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks"; "LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks"; MACOSX_DEPLOYMENT_TARGET = 13.5; @@ -338,7 +338,7 @@ "INFOPLIST_KEY_UIStatusBarStyle[sdk=iphonesimulator*]" = UIStatusBarStyleDefault; INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; - IPHONEOS_DEPLOYMENT_TARGET = 16.6; + IPHONEOS_DEPLOYMENT_TARGET = 17.0; LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks"; "LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks"; MACOSX_DEPLOYMENT_TARGET = 13.5; diff --git a/Package.swift b/Package.swift index 568408d..677e1ae 100644 --- a/Package.swift +++ b/Package.swift @@ -4,7 +4,7 @@ import PackageDescription let package = Package( name: "TCAWorkshop", - platforms: [.iOS(.v16), .macOS(.v10_15)], + platforms: [.iOS(.v17)], products: [ .library(name: "AppFeature", targets: ["AppFeature"]), .library(name: "Docs", targets: ["Docs"]),