-
Notifications
You must be signed in to change notification settings - Fork 0
/
SwedbankPaySDK.podspec
30 lines (24 loc) · 1.09 KB
/
SwedbankPaySDK.podspec
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
#
# Be sure to run `pod lib lint SwedbankPaySDK.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'SwedbankPaySDK'
s.version = ENV['RELEASE_TAG_NAME'] || '0.1-local'
s.summary = 'Swedbank Pay SDK for iOS.'
s.description = <<-DESC
The Swedbank Pay iOS SDK enables simple embedding of Swedbank Pay Checkout to an iOS application.
DESC
s.homepage = 'https://github.com/SwedbankPay/swedbank-pay-sdk-ios'
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
s.author = 'Swedbank Pay'
s.source = { :git => 'https://github.com/SwedbankPay/swedbank-pay-sdk-ios.git', :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.swift_versions = '5.0', '5.1'
s.source_files = 'SwedbankPaySDK/Classes/**/*'
s.resources = 'SwedbankPaySDK/Resources/**/*'
s.frameworks = 'UIKit', 'WebKit'
end