-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathAPAC-BNPayment.podspec
More file actions
23 lines (23 loc) · 1.01 KB
/
APAC-BNPayment.podspec
File metadata and controls
23 lines (23 loc) · 1.01 KB
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 = "APAC-BNPayment"
spec.version = "1.3.6"
spec.summary = "The Mobile Payment SDK from Bambora (APAC) makes it simple to accept credit card payments in your app."
build_tag = spec.version
spec.homepage = "http://bambora.com/en/au"
spec.license = 'MIT'
spec.author = { "APAC-BNPayment" => "apac-mobile-sdk-maintainers@bambora.com" }
spec.source = {
:git => "https://github.com/bambora/APAC-BNPayment-iOS.git",
:tag => build_tag.to_s
}
spec.platform = :ios, '10.2'
spec.requires_arc = true
spec.module_name = 'BNPayment'
spec.header_dir = 'BNPayment'
spec.source_files = 'BNPayment/**/**'
spec.dependency 'CardIO', '~> 5.4.1'
spec.static_framework = true
spec.resource_bundles = {
'BNPayment' => ['Assets/**/*.{png,bundle,xib,nib,cer,html}']
}
end