-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTrustPinKit.podspec
More file actions
34 lines (28 loc) · 1.47 KB
/
TrustPinKit.podspec
File metadata and controls
34 lines (28 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Pod::Spec.new do |spec|
spec.name = "TrustPinKit"
spec.version = "3.3.0"
spec.summary = "TrustPin iOS SDK for certificate pinning and security"
spec.description = <<-DESC
TrustPin provides advanced certificate pinning and network security
capabilities for iOS applications, ensuring secure communication
and protection against man-in-the-middle attacks.
DESC
spec.homepage = "https://github.com/trustpin-cloud/TrustPin-Swift.binary"
spec.license = { :type => "Custom", :text => "TrustPin Binary License Agreement - See https://trustpin.cloud for full terms" }
spec.author = { "TrustPin" => "support@trustpin.cloud" }
spec.ios.deployment_target = "13.0"
spec.osx.deployment_target = "13.0"
spec.watchos.deployment_target = "7.0"
spec.tvos.deployment_target = "13.0"
spec.visionos.deployment_target = "2.0"
spec.source = { :http => "https://github.com/trustpin-cloud/TrustPin-Swift.binary/releases/download/3.3.0/TrustPinKit-3.3.0.xcframework.zip" }
spec.vendored_frameworks = "TrustPinKit.xcframework"
spec.frameworks = "Foundation", "Security"
spec.swift_version = "6.1"
# Metadata for better discoverability
spec.documentation_url = "https://trustpin-cloud.github.io/TrustPin-Swift.binary/"
spec.social_media_url = "https://trustpin.cloud"
# Module map and other settings
spec.module_name = "TrustPinKit"
spec.requires_arc = true
end