-
Notifications
You must be signed in to change notification settings - Fork 0
/
MAdSDK.podspec
30 lines (25 loc) · 1.06 KB
/
MAdSDK.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
Pod::Spec.new do |s|
s.name = 'MAdSDK'
s.version = '1.5'
s.summary = 'MAdiOS for iOS'
s.license = { :type => 'MIT', :file => 'Licenses/MAdSDK-LICENSE.txt' }
s.description = 'MAdSDK display ads.'
s.homepage = 'http://developer.yahoo.com/flurry'
s.author = { 'MAdSDK' => '[email protected]' }
s.source = { :git => 'https://github.com/asharmaa/MAdSDK.git', :tag => s.version.to_s }
s.platforms = { :ios => '13.0' }
s.requires_arc = false
s.pod_target_xcconfig = { 'ONLY_ACTIVE_ARCH' => 'YES' }
s.user_target_xcconfig = { 'ONLY_ACTIVE_ARCH' => 'YES' }
s.default_subspec = 'MAdiOS'
s.subspec 'MAdiOS' do |ss|
ss.ios.deployment_target = '13.0'
ss.ios.frameworks = 'Foundation', 'SystemConfiguration', 'UIKit', 'Security'
ss.ios.vendored_frameworks = 'MAdiOS.xcframework'
ss.ios.dependency 'MAdSDK/OMSDK_Appnexus'
end
s.subspec 'OMSDK_Appnexus' do |ss|
ss.ios.deployment_target = '13.0'
ss.vendored_frameworks = "OMSDK_Appnexus.xcframework"
end
end