-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYouboraIMAAdapter.podspec
42 lines (29 loc) · 1.23 KB
/
YouboraIMAAdapter.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
Pod::Spec.new do |s|
s.name = 'YouboraIMAAdapter'
s.version = '6.7.0'
# Metadata
s.summary = 'Library required to track IMA Ads on Youbora'
s.description = '<<-DESC
YouboraIMAAdaoter is a library created by Nice People at Work.
DESC'
s.homepage = 'http://developer.nicepeopleatwork.com/'
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
s.author = { 'NPAW' => '[email protected]' }
# Platforms
s.ios.deployment_target = '12.0'
s.tvos.deployment_target = '12.0'
# Swift version
s.swift_version = '4.0', '4.1', '4.2', '4.3', '5.0', '5.1'
# Source Location
s.source = { :git => 'https://bitbucket.org/npaw/ima-adapter-ios.git', :tag => s.version }
# Source files
s.source_files = 'YouboraIMAAdapter/**/*.{h,m,swift}'
# Public header files
s.public_header_files = 'YouboraIMAAdapter/**/*.h'
# Project settings
s.requires_arc = true
s.pod_target_xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) YOUBORAIMAADAPTER_VERSION=' + s.version.to_s }
s.dependency 'YouboraLib', '~> 6.5'
s.ios.dependency 'GoogleAds-IMA-iOS-SDK', '~> 3.16'
s.tvos.dependency 'GoogleAds-IMA-tvOS-SDK', '~> 4.8'
end