-
Notifications
You must be signed in to change notification settings - Fork 30
/
Podfile
43 lines (38 loc) · 1.34 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
platform :ios, '10.0'
use_frameworks!
source 'https://github.com/appodeal/CocoaPods.git'
source 'https://cdn.cocoapods.org/'
def appodeal
pod 'APDAdColonyAdapter', '2.10.1.1'
pod 'APDAmazonAdsAdapter', '2.10.1.1'
pod 'APDAppLovinAdapter', '2.10.1.2'
pod 'APDBidMachineAdapter', '2.10.1.1'
pod 'APDFacebookAudienceAdapter', '2.10.1.1'
pod 'APDGoogleAdMobAdapter', '2.10.1.1'
pod 'APDIronSourceAdapter', '2.10.1.1'
pod 'APDMyTargetAdapter', '2.10.1.1'
pod 'APDOguryAdapter', '2.10.1.1'
pod 'APDSmaatoAdapter', '2.10.1.1'
pod 'APDStartAppAdapter', '2.10.1.2'
pod 'APDUnityAdapter', '2.10.1.1'
pod 'APDVungleAdapter', '2.10.1.1'
pod 'APDYandexAdapter', '2.10.1.1'
end
target 'Neocom' do
project './Neocom/Neocom.xcodeproj'
pod 'StackConsentManager', '~> 1.1.0'
appodeal
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
xcconfig_path = config.base_configuration_reference.real_path
xcconfig = File.read(xcconfig_path)
xcconfig.sub!('OTHER_LDFLAGS', 'OTHER_LDFLAGS[sdk=iphone*]')
File.open(xcconfig_path, "w") { |file| file << xcconfig }
# puts config.build_settings
# puts "\n***\n"
# config.build_settings['OTHER_LDFLAGS'] = '$(inherited)'
end
end
end