forked from criteo/ios-publisher-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
57 lines (44 loc) · 1.27 KB
/
Podfile
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
49
50
51
52
53
54
55
56
57
platform :ios, '13.0'
workspace 'CriteoPublisherSdk'
target 'CriteoPublisherSdk' do
project 'CriteoPublisherSdk/CriteoPublisherSdk'
end
target 'CriteoPublisherSdkTests' do
project 'CriteoPublisherSdk/CriteoPublisherSdk'
platform :ios, '13.0'
# Test libs
pod 'OCMock', '~> 3.6'
pod 'FunctionalObjC', '~> 1.0'
# Third party SDKs
pod 'Google-Mobile-Ads-SDK'
pod 'CriteoMRAID', '~> 2.0.0'
end
target 'CriteoAdViewer' do
project 'CriteoAdViewer/CriteoAdViewer'
platform :ios, '13.0'
pod 'Google-Mobile-Ads-SDK'
pod 'Eureka'
end
target 'CriteoGoogleAdapter' do
project 'CriteoGoogleAdapter/CriteoGoogleAdapter'
# As declared in podspec, iOS 9 is supported
# This is a workaround to address a CocoaPods v1.10 regression:
# https://github.com/CocoaPods/CocoaPods/issues/10106
platform :ios, '13.0'
pod 'Google-Mobile-Ads-SDK'
end
target 'CriteoGoogleAdapterTests' do
project 'CriteoGoogleAdapter/CriteoGoogleAdapter'
# Test libs
pod 'OCMock', '~> 3.6'
end
# Development tools
pod 'SwiftLint', '~> 0.45.0'
pod 'CriteoMRAID', '~> 2.0.0'
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['GCC_WARN_INHIBIT_ALL_WARNINGS'] = 'YES'
end
end
end