From ceabf23c74465df23e10b65c4fa1aafd730452b8 Mon Sep 17 00:00:00 2001 From: Igor Babitski Date: Tue, 3 Feb 2026 17:30:31 +0200 Subject: [PATCH 1/2] Removed arm64 arc exclusion for M series MAC simulators --- IdentityVerification.podspec | 5 ----- 1 file changed, 5 deletions(-) diff --git a/IdentityVerification.podspec b/IdentityVerification.podspec index 1ef534e..a8bd7c7 100644 --- a/IdentityVerification.podspec +++ b/IdentityVerification.podspec @@ -136,10 +136,5 @@ Pod::Spec.new do |spec| # spec.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" } spec.dependency "TSCoreSDK", "~> 1.0.35" spec.dependency "AccountProtection", "~> 2.1.16" - - spec.pod_target_xcconfig = { - 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' - } - spec.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' } end From 638563f55dbfa3d5e690880e3b275f1e08d1db45 Mon Sep 17 00:00:00 2001 From: Igor Babitski Date: Tue, 3 Feb 2026 17:47:13 +0200 Subject: [PATCH 2/2] Added missing target in the package, this target is linked against the TSCoreSDK binary and expects it at build and runtime. This also enables imports of TSCoreSDK in the hosting application --- Package.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Package.swift b/Package.swift index 527e89a..4a2ac65 100644 --- a/Package.swift +++ b/Package.swift @@ -25,7 +25,9 @@ let package = Package( .target(name: "IdentityVerification-Dependencies", dependencies: [ .product(name: "AccountProtection", - package: "accountprotection-ios-sdk") + package: "accountprotection-ios-sdk"), + .product(name: "TSCoreSDK", + package: "core-ios-sdk") ]), ] )