-
Notifications
You must be signed in to change notification settings - Fork 0
/
YouCanPay.podspec
23 lines (21 loc) · 1.17 KB
/
YouCanPay.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |spec|
spec.name = "YouCanPay"
spec.version = "0.0.5"
spec.summary = "The YCPayment iOS SDK makes it quick and easy to build an excellent payment experience in your iOS app."
spec.description = <<-DESC
The YouCanPay iOS SDK makes it quick and easy to build an excellent payment experience in your iOS app. We provide a powerful and customizable WKWebview that can be used to handle 3DS step and build a fully custom experience.
DESC
spec.homepage = "https://github.com/NextmediaMa/youcan-pay-ios-sdk"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "YouCan Pay Team" => "https://pay.youcan.shop/" }
spec.platform = :ios
spec.ios.deployment_target = "11.0"
spec.swift_version = "5"
spec.source = { :git => "https://github.com/NextmediaMa/youcan-pay-ios-sdk.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/YouCanPay/**/*.swift"
spec.resources = "Sources/YouCanPay/resources/*"
spec.dependency "Alamofire", '~> 5.0.0'
spec.frameworks = 'Foundation', 'WebKit', 'UIKit'
spec.ios.resource_bundle = { 'YouCanPay' => ['Sources/YouCanPay/resources/*.{lproj,png,html}'] }
spec.requires_arc = true
end