-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathRevenueMonster.podspec
43 lines (39 loc) · 1.95 KB
/
RevenueMonster.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
#
# Be sure to run `pod lib lint RevenueMonster.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 = 'RevenueMonster'
s.version = '1.3'
s.summary = 'RM SDK for IOS'
s.description = <<-DESC
RM SDK for IOS. Supported payment method WeChatPay Malaysia, Boost, GrabPay, Tng, Alipay China, PrestoPay, RazerPay, MCash, FPX, GoBiz
DESC
s.homepage = 'https://revenuemonster.my'
s.license = { :type => 'BSD 3-Clause "New" or "Revised" License', :file => 'LICENSE' }
s.swift_version = '5.0'
s.author = { 'myussufz' => '[email protected]' }
s.source = { :git => 'https://github.com/RevenueMonster/RM-IOS.git', :tag => 'v' + s.version.to_s }
s.ios.deployment_target = '9.0'
s.platform = :ios, '9.0'
s.source_files = 'RevenueMonster/**/*'
s.exclude_files = ["RevenueMonster/**/*.plist"]
s.preserve_paths = 'RevenueMonster/Library/**/*.modulemap'
s.private_header_files = 'RevenueMonster/Library/**/*.h'
s.libraries = 'z', 'c++', 'sqlite3'
s.vendored_frameworks = ['RevenueMonster/Library/AlipaySDK/AlipaySDK.framework']
s.frameworks = 'SystemConfiguration', 'CoreTelephony', 'CFNetwork', 'Security', 'Foundation', 'AlipaySDK', 'CoreMotion', 'UIKit', 'CoreGraphics', 'CoreText', 'QuartzCore'
s.vendored_libraries = ['RevenueMonster/Library/WeChatSDK/libWeChatSDK.a']
s.xcconfig = {
'FRAMEWORK_SEARCH_PATHS' => '${PODS_TARGET_SRCROOT}/RevenueMonster/Library/AlipaySDK',
'SWIFT_INCLUDE_PATHS' => '${PODS_TARGET_SRCROOT}/RevenueMonster/Library/**',
'OTHER_LDFLAGS' => '-all_load'
}
s.pod_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'
}
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
end