-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathPrebidMobileGAMEventHandlers.podspec
More file actions
48 lines (37 loc) · 1.74 KB
/
PrebidMobileGAMEventHandlers.podspec
File metadata and controls
48 lines (37 loc) · 1.74 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 = "PrebidMobileGAMEventHandlers"
s.version = "3.3.1"
s.summary = "The bridge between PrebidMobile SDK and GMA SDK."
s.description = "GAM Event Handlers manages rendering of Prebid or GAM 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." => "info@prebid.org" }
s.platform = :ios, "13.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/PrebidMobileGAMEventHandlers/**/*.{h,m,swift}'
s.static_framework = true
s.dependency 'PrebidMobile', '3.3.1'
s.dependency 'Google-Mobile-Ads-SDK', '>= 13.0.0'
s.pod_target_xcconfig = {
'BUILD_LIBRARY_FOR_DISTRIBUTION' => 'YES'
}
end