From 3e3c22f65516080883edafa4b15b441bc5f07d2b Mon Sep 17 00:00:00 2001 From: Boris Nikolic Date: Wed, 6 Dec 2023 13:17:14 +0100 Subject: [PATCH] Bump minimum iOS support to iOS 13 --- Package.swift | 8 +------- Primer3DS.podspec | 2 +- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/Package.swift b/Package.swift index 8d335d5..160a9bb 100644 --- a/Package.swift +++ b/Package.swift @@ -7,20 +7,14 @@ let package = Package( name: "Primer3DS", defaultLocalization: "en", platforms: [ - .iOS(.v10) + .iOS(.v13) ], products: [ - // Products define the executables and libraries a package produces, and make them visible to other packages. .library(name: "Primer3DS", targets: ["Primer3DS"]), -// .library(name: "ThreeDS_SDK", targets: ["ThreeDS_SDK"]), ], dependencies: [ - // Dependencies declare other packages that this package depends on. - // .package(url: /* package url */, from: "1.0.0"), ], targets: [ - // Targets are the basic building blocks of a package. A target can define a module or a test suite. - // Targets can depend on other targets in this package, and on products in packages this package depends on. .target( name: "Primer3DS", dependencies: [ diff --git a/Primer3DS.podspec b/Primer3DS.podspec index ef902e6..dd6458b 100644 --- a/Primer3DS.podspec +++ b/Primer3DS.podspec @@ -13,7 +13,7 @@ A wrapper around the 3rd party 3DS SDK. s.source = { :git => 'https://github.com/primer-io/primer-sdk-3ds-ios.git', :tag => s.version.to_s } s.swift_version = '5' - s.ios.deployment_target = '11.0' + s.ios.deployment_target = '13.0' s.ios.source_files = 'Sources/Primer3DS/Classes/*.{swift}' s.ios.frameworks = 'Foundation', 'UIKit'