From 731e879decdb2de2a1608aeb21416982e59ca641 Mon Sep 17 00:00:00 2001 From: echo Date: Mon, 31 Jul 2023 14:06:28 -0700 Subject: [PATCH] Update podspec and package.swift --- BranchSDK.podspec | 7 +++---- Package.swift | 5 ++--- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/BranchSDK.podspec b/BranchSDK.podspec index af7ced7f7..8be1ff614 100644 --- a/BranchSDK.podspec +++ b/BranchSDK.podspec @@ -15,8 +15,8 @@ Use the Branch SDK (branch.io) to create and power the links that point back to s.license = 'MIT' s.author = { "Branch" => "sdk-team@branch.io" } s.source = { git: "https://github.com/BranchMetrics/ios-branch-deep-linking-attribution.git", tag: s.version.to_s } - s.ios.deployment_target = '11.0' - s.tvos.deployment_target = '11.0' + s.ios.deployment_target = '12.0' + s.tvos.deployment_target = '12.0' s.ios.source_files = "BranchSDK/*.{h,m}" @@ -24,7 +24,6 @@ Use the Branch SDK (branch.io) to create and power the links that point back to s.tvos.exclude_files = "BranchSDK/BNCAdClient.{h,m}", "BranchSDK/BNCAppleSearchAds.{h,m}", "BranchSDK/BNCContentDiscoveryManager.{h,m}", - "BranchSDK/BNCTelephony.{h,m}", "BranchSDK/BNCUserAgentCollector.{h,m}", "BranchSDK/BNCSpotlightService.{h,m}", "BranchSDK/BranchActivityItemProvider.{h,m}", @@ -34,5 +33,5 @@ Use the Branch SDK (branch.io) to create and power the links that point back to s.frameworks = 'CoreServices', 'SystemConfiguration' s.weak_framework = 'LinkPresentation' - s.ios.frameworks = 'WebKit', 'CoreTelephony' + s.ios.frameworks = 'WebKit' end diff --git a/Package.swift b/Package.swift index c3a544a03..6d66f9c42 100644 --- a/Package.swift +++ b/Package.swift @@ -5,8 +5,8 @@ import PackageDescription let package = Package( name: "BranchSDK", platforms: [ - .iOS(.v11), - .tvOS(.v11), + .iOS(.v12), + .tvOS(.v12), ], products: [ .library( @@ -21,7 +21,6 @@ let package = Package( linkerSettings: [ .linkedFramework("CoreServices"), .linkedFramework("SystemConfiguration"), - .linkedFramework("CoreTelephony", .when(platforms: [.iOS])), .linkedFramework("WebKit", .when(platforms: [.iOS])), .linkedFramework("CoreSpotlight", .when(platforms: [.iOS])), .linkedFramework("AdServices", .when(platforms: [.iOS]))