forked from urbanairship/ios-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
26 lines (23 loc) · 712 Bytes
/
Copy pathPodfile
File metadata and controls
26 lines (23 loc) · 712 Bytes
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
workspace 'Airship'
platform :ios, '10.0'
use_frameworks!
target 'AirshipKitTests' do
project 'AirshipKit/AirshipKit.xcodeproj'
pod 'OCMock', '~> 3.4.1'
pod 'XcodeEdit', '~> 2.4', :inhibit_warnings => true
end
target 'TestShipTests' do
project 'TestShip/TestShip.xcodeproj'
pod 'KIF', :configurations => ['Debug']
end
post_install do |installer|
installer.pods_project.targets.each do |target|
# Disable bitcode in KIF by default because of issue below:
# https://github.com/kif-framework/KIF/issues/796
if target.name == 'KIF'
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
end
end