forked from prebid/prebid-mobile-ios
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPrebidMobileMAXAdapters.podspec
More file actions
48 lines (37 loc) · 1.71 KB
/
PrebidMobileMAXAdapters.podspec
File metadata and controls
48 lines (37 loc) · 1.71 KB
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
Pod::Spec.new do |s|
s.name = "PrebidMobileMAXAdapters"
s.version = "3.2.0"
s.summary = "The bridge between PrebidMobile SDK and Applovin MAX SDK."
s.description = "MAX Adapters manages rendering of Prebid or MAX ads respectively to the winning bid."
s.homepage = "https://www.prebid.org"
s.license = { :type => "Apache License, Version 2.0", :text => <<-LICENSE
Copyright 2018-2021 Prebid.org, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
LICENSE
}
s.author = { "Prebid.org, Inc." => "[email protected]" }
s.platform = :ios, "12.0"
s.swift_version = '5.0'
s.source = { :git => "https://github.com/prebid/prebid-mobile-ios.git", :tag => "#{s.version}" }
s.xcconfig = { :LIBRARY_SEARCH_PATHS => '$(inherited)',
:OTHER_CFLAGS => '$(inherited)',
:OTHER_LDFLAGS => '$(inherited)',
:HEADER_SEARCH_PATHS => '$(inherited)',
:FRAMEWORK_SEARCH_PATHS => '$(inherited)'
}
s.source_files = 'EventHandlers/PrebidMobileMAXAdapters/**/*.{h,m,swift}'
s.static_framework = true
s.dependency 'PrebidMobile', '3.2.0'
s.dependency 'AppLovinSDK'
s.pod_target_xcconfig = {
'BUILD_LIBRARY_FOR_DISTRIBUTION' => 'YES'
}
end