-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathXendit.podspec
executable file
·34 lines (30 loc) · 1.36 KB
/
Xendit.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
Pod::Spec.new do |s|
s.name = 'Xendit'
s.version = '3.10.4'
s.license = 'MIT'
s.homepage = 'https://www.xendit.co'
s.author = { 'Juan Gonzalez’' => '[email protected]' }
s.social_media_url = 'https://www.facebook.com/xendit'
s.summary = 'Xendit is an API for accepting payments online'
s.source = { :git => 'https://github.com/xendit/xendit-sdk-ios-src.git', :tag => s.version }
s.swift_versions = ['4', '5']
s.platform = :ios, '11.0'
s.ios.deployment_target = '11.0'
s.resource_bundles = {
'Xendit' => ['Sources/Xendit/PrivacyInfo.xcprivacy']
}
s.default_subspec = 'Default'
# Default subspec that includes the most commonly-used components
s.subspec 'Default' do |default|
default.dependency 'Xendit/XenditObjC'
default.dependency 'Sentry', '8.35.0'
default.source_files = 'Sources/Xendit/**/*.swift'
end
# The XenditObjC subspec, containing the Objective-C library needed
s.subspec 'XenditObjC' do |xenditobjc|
xenditobjc.source_files = 'Sources/XenditObjC/**/*.{h,m}',
'Sources/XenditObjC/include/Xendit.h'
end
s.pod_target_xcconfig = { 'ONLY_ACTIVE_ARCH' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
s.user_target_xcconfig = { 'ONLY_ACTIVE_ARCH' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
end