-
Notifications
You must be signed in to change notification settings - Fork 1
/
AMRAdapterMytarget.podspec
30 lines (29 loc) · 1.23 KB
/
AMRAdapterMytarget.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 = 'AMRAdapterMytarget'
s.version = '5.23.0.1'
s.license = { :type => 'Copyright', :text => <<-LICENSE
Copyright 2016
Admost Mediation Limited.
LICENSE
}
s.homepage = 'http://www.admost.com/'
s.author = { 'Admost Mediation Limited' => '[email protected]' }
s.summary = 'MyTarget adapter for AMR SDK.'
s.description = 'AMR MyTarget adapter allows publishers to mediate MyTarget banner, native banner, interstitial and video ads in AMR SDK.'
s.source = { :git => 'https://github.com/admost/AMR-IOS-ADAPTER-MYTARGET.git',
:tag => s.version.to_s
}
s.documentation_url = 'https://admost.github.io/amrios/'
s.platform = :ios
s.ios.deployment_target = '12.4'
s.swift_versions = ['5']
s.pod_target_xcconfig = {
'OTHER_LDFLAGS' => '-ObjC -lc++',
"VALID_ARCHS": "arm64 armv7 x86_64",
'VALID_ARCHS[sdk=iphoneos*]' => 'armv7 arm64',
'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64 arm64'
}
s.vendored_frameworks = 'AMRAdapterMytarget/Libs/AMRAdapterMytarget.xcframework'
s.dependency 'myTargetSDK', '5.23.0'
s.dependency 'AMRSDK', '~> 1.5.55'
end