forked from prebid/prebid-mobile-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
37 lines (26 loc) · 741 Bytes
/
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
# Uncomment the next line to define a global platform for your project
platform :ios, '9.0'
workspace 'PrebidMobile'
project 'PrebidMobile.xcodeproj'
project 'Example/PrebidDemo/PrebidDemo.xcodeproj'
project 'tools/PrebidValidator/Dr.Prebid.xcodeproj'
def prebid_demo_pods
use_frameworks!
pod 'Google-Mobile-Ads-SDK'
pod 'mopub-ios-sdk'
end
target 'PrebidDemoSwift' do
project 'Example/PrebidDemo/PrebidDemo.xcodeproj'
prebid_demo_pods
target 'PrebidDemoTests' do
inherit! :search_paths
end
end
target 'PrebidDemoObjectiveC' do
project 'Example/PrebidDemo/PrebidDemo.xcodeproj'
prebid_demo_pods
end
target 'Dr.Prebid' do
project 'tools/PrebidValidator/Dr.Prebid.xcodeproj'
prebid_demo_pods
end