From 2fb12787894377d1cd2c8174fdf30966801725ed Mon Sep 17 00:00:00 2001 From: Adam Gic Date: Fri, 21 Feb 2025 09:32:45 +0100 Subject: [PATCH] Update ios SDK to 3.3.3, depend on approov-ios-sdk instead of providing Approov.xcframework by its own. --- .../3.3.3/ApproovURLSession.podspec | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 ApproovURLSession/3.3.3/ApproovURLSession.podspec diff --git a/ApproovURLSession/3.3.3/ApproovURLSession.podspec b/ApproovURLSession/3.3.3/ApproovURLSession.podspec new file mode 100644 index 0000000..a2ec765 --- /dev/null +++ b/ApproovURLSession/3.3.3/ApproovURLSession.podspec @@ -0,0 +1,22 @@ +Pod::Spec.new do |s| + s.name = "ApproovURLSession" + s.version = "3.3.3" + s.summary = "Approov mobile attestation SDK" + s.description = <<-DESC + Approov SDK integrates security attestation and secure string fetching for both iOS and watchOS apps. + DESC + s.homepage = "https://approov.io" + s.license = { type: "Commercial", file: "LICENSE" } + s.authors = { "CriticalBlue, Ltd." => "support@approov.io" } + s.source = { git: "https://github.com/approov/approov-service-urlsession.git", tag: s.version } + + # Supported platforms + s.ios.deployment_target = '12.0' + s.watchos.deployment_target = '7.0' + + # Specify the source code paths for the combined target + s.source_files = 'Sources/ApproovURLSession/**/*' + + s.dependency 'approov-ios-sdk', '3.3.3' + +end