Raise watchOS min version to 7.4 as supported by Xcode 14 unit tests

This commit is contained in:
John Estropia
2022-09-13 09:26:21 +09:00
parent c923dfc12c
commit 2559375491
5 changed files with 17 additions and 9 deletions

View File

@@ -12,7 +12,7 @@ Pod::Spec.new do |s|
s.ios.deployment_target = "13.0"
s.osx.deployment_target = "10.15"
s.tvos.deployment_target = "13.0"
s.watchos.deployment_target = "6.0"
s.watchos.deployment_target = "7.4"
s.source_files = "Sources", "Sources/**/*.swift"
s.public_header_files = "Sources/**/*.h"
@@ -27,6 +27,9 @@ Pod::Spec.new do |s|
ts.preserve_paths = "CoreStoreTests/**/*.xcdatamodeld"
ts.frameworks = "Foundation", "CoreData"
ts.requires_arc = true
ts.platforms = { :ios => nil, :osx => nil, :tvos => nil, :watchos => nil }
ts.ios.deployment_target = "13.0"
ts.osx.deployment_target = "10.15"
ts.tvos.deployment_target = "13.0"
ts.watchos.deployment_target = "7.4"
end
end