-
Notifications
You must be signed in to change notification settings - Fork 9
/
Podfile
26 lines (21 loc) · 820 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
inhibit_all_warnings!
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, :deployment_target => '8.2'
link_with 'AppleWatchSBB', 'AppleWatchSBB WatchKit Extension'
pod 'UICocoapodsLib'
target :'AppleWatchSBB' do
pod 'SCLAlertView-Objective-C', '~> 0.7.0'
pod 'SimulatorStatusMagic', :configurations => ['Debug']
end
target :'AppleWatchSBB WatchKit Extension' do
pod 'MediaRSSParser', '~> 1.0'
end
post_install do |installer_representation|
installer_representation.project.targets.each do |target|
if target.name == "Pods-AppleWatchSBB WatchKit Extension-AFNetworking"
target.build_configurations.each do |config|
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)', 'AF_APP_EXTENSIONS=1']
end
end
end
end