-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathEvervaultPayment.podspec
More file actions
27 lines (21 loc) · 1.17 KB
/
EvervaultPayment.podspec
File metadata and controls
27 lines (21 loc) · 1.17 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
Pod::Spec.new do |spec|
spec.name = "EvervaultPayment"
spec.version = "0.0.24"
spec.summary = "Evervault Pay SDK for iOS - Secure Apple Pay integration with Evervault encryption"
spec.description = <<-DESC
The Evervault Pay SDK for iOS provides a secure way to integrate Apple Pay into your iOS applications.
It handles the complete payment flow including token encryption and decryption through Evervault's
secure infrastructure, supporting one-off payments, recurring payments, and disbursements.
DESC
spec.homepage = "https://evervault.com"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Evervault" => "support@evervault.com" }
spec.platform = :ios, '15.0'
spec.source = { :git => "https://github.com/evervault/evervault-pay.git", :tag => "#{spec.version}" }
spec.source_files = "ios/EvervaultPayment/Sources/EvervaultPayment/**/*.swift"
spec.swift_version = "5.9"
spec.frameworks = "PassKit", "Foundation", "UIKit"
spec.documentation_url = "https://docs.evervault.com/sdks/ios"
spec.social_media_url = "https://twitter.com/evervault"
spec.static_framework = true
end