-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNICardManagementSDK.podspec
45 lines (24 loc) · 2.46 KB
/
NICardManagementSDK.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Pod::Spec.new do |spec|
spec.name = "NICardManagementSDK"
spec.version = "2.1.0"
spec.summary = "SDKs to help card issuers to consume our APIs from iOS applications."
spec.homepage = "https://github.com/network-international/card-management-sdk-ios"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.license = { :type => "MIT", :file => "LICENSE" }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.author = "Network International"
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.platform = :ios
spec.ios.deployment_target = "15.0"
spec.swift_version = "5.0"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.source = { :git => "https://github.com/network-international/card-management-sdk-ios.git", :tag => "#{spec.version}" }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.source_files = "CardManagementSDK/**/*.{swift}"
# ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.resources = "CardManagementSDK/**/*.{png,jpeg,jpg,storyboard,xib,xcassets,strings,otf}"
# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.frameworks = "UIKit", "Foundation"
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.requires_arc = true
end