-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBrandPay.podspec
66 lines (53 loc) · 1.8 KB
/
BrandPay.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
s.name = "BrandPay"
s.version = `cat version`
s.summary = "BrandPay SDK from TossPayments"
s.description = <<-DESC
BrandPay SDK from TossPayments
You can install Pay module easily.
DESC
s.homepage = "https://www.tosspayments.com"
s.license = { :type => 'Proprietary', :text => 'Copyright 2023 TossPayments Ltd. All rights reserved.' }
s.author = { "Jinkyu Kim" => "mqz@toss.im" }
s.platform = :ios
s.ios.deployment_target = '11.0'
s.source = { :git => "https://github.com/tosspayments/BrandPay.git", :tag => s.version.to_s }
# s.ios.frameworks = 'UIKit'
# s.ios.preserve_paths = [
# 'Library/*.xcframework'
# ]
# s.ios.vendored_frameworks = [
# 'Library/*.xcframework'
# ]
s.default_subspec = 'Core'
s.subspec 'Core' do |ss|
ss.ios.preserve_paths = [
'Library/BrandPayBase.xcframework'
]
ss.ios.vendored_frameworks = [
'Library/BrandPayBase.xcframework'
]
end
s.subspec 'Biometric' do |ss|
ss.ios.preserve_paths = [
'Library/BiometricInterface.xcframework'
]
ss.ios.vendored_frameworks = [
'Library/BiometricInterface.xcframework'
]
ss.dependency 'BrandPay/Core'
end
s.subspec 'OCR' do |ss|
ss.ios.preserve_paths = [
'Library/FinCubeOcrSDK.xcframework',
'Library/OCRInterface.xcframework'
]
ss.ios.vendored_frameworks = [
'Library/FinCubeOcrSDK.xcframework',
'Library/OCRInterface.xcframework'
]
ss.dependency 'BrandPay/Core'
end
end