-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPodfile
173 lines (142 loc) · 2.96 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
platform :ios, '9.0'
workspace 'BidMachine.xcworkspace'
# Use Appodeal CocoaPods repo for adapters dependencies
source 'https://github.com/appodeal/CocoaPods.git'
# Use official CocoaPods repo for test dependecies
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
install! 'cocoapods', :deterministic_uuids => false, :warn_for_multiple_pod_sources => false
def protobuf
pod 'StackAPI/BidMachine', '~> 0.1.0', :inhibit_warnings => true
pod 'Protobuf', :inhibit_warnings => true
end
def nast
pod 'StackIAB/StackNASTKit', '~> 0.5.0'
end
def mraid
pod 'StackIAB/StackMRAIDKit', '~> 0.5.0'
end
def vast
pod 'StackIAB/StackVASTKit', '~> 0.5.0'
end
def toasts
pod 'Toast-Swift', '~> 4.0.0', :inhibit_warnings => true
end
def stack_modules
pod 'StackModules', '~> 0.6.3'
pod 'StackModules/StackFoundation', '~> 0.6.3'
pod 'StackModules/StackUIKit', '~> 0.6.3'
end
def vungle
pod 'VungleSDK-iOS', '~> 6.4'
end
def adcolony
pod 'AdColony', '~> 4.1'
end
def my_target
pod 'myTargetSDK', '~> 5.3'
end
def tapjoy
pod 'TapjoySDK', '~> 12.3'
end
def facebook
pod 'FBAudienceNetwork', '~> 5.5'
end
def mintegral
pod 'MintegralAdSDK/BidInterstitialVideoAd', '~> 5.8'
pod 'MintegralAdSDK/BidRewardVideoAd', '~> 5.8'
end
def amazon
pod 'DTBiOSSDK', '~> 3.0'
end
def smaato
pod 'smaato-ios-sdk', '~> 21.2'
pod 'smaato-ios-sdk/Modules/UnifiedBidding', '~> 21.2'
end
# Targets configuration
target 'BidMachine' do
project 'BidMachine/BidMachine.xcodeproj'
protobuf
stack_modules
end
target 'BDMMRAIDAdapter' do
project 'Adaptors/Adaptors.xcodeproj'
stack_modules
mraid
end
target 'BDMNASTAdapter' do
project 'Adaptors/Adaptors.xcodeproj'
stack_modules
nast
end
target 'BDMCriteoAdapter' do
project 'Adaptors/Adaptors.xcodeproj'
stack_modules
end
target 'BDMVASTAdapter' do
project 'Adaptors/Adaptors.xcodeproj'
stack_modules
vast
end
target 'BDMMyTargetAdapter' do
project 'Adaptors/Adaptors.xcodeproj'
my_target
stack_modules
end
target 'BDMAdColonyAdapter' do
project 'Adaptors/Adaptors.xcodeproj'
adcolony
stack_modules
end
target 'BDMVungleAdapter' do
project 'Adaptors/Adaptors.xcodeproj'
vungle
stack_modules
end
target 'BDMTapjoyAdapter' do
project 'Adaptors/Adaptors.xcodeproj'
tapjoy
stack_modules
end
target 'BDMFacebookAdapter' do
project 'Adaptors/Adaptors.xcodeproj'
facebook
stack_modules
end
target 'BDMMintegralAdapter' do
project 'Adaptors/Adaptors.xcodeproj'
mintegral
stack_modules
end
target 'BDMAmazonAdapter' do
project 'Adaptors/Adaptors.xcodeproj'
amazon
stack_modules
end
target 'BDMSmaatoAdapter' do
project 'Adaptors/Adaptors.xcodeproj'
smaato
stack_modules
end
target 'Sample' do
project 'Sample/Sample.xcodeproj'
mraid
vast
nast
my_target
adcolony
vungle
tapjoy
facebook
mintegral
amazon
smaato
stack_modules
protobuf
toasts
end
target 'BidMachineTests' do
project 'BidMachine/BidMachine.xcodeproj'
pod "Kiwi"
stack_modules
end