-
Notifications
You must be signed in to change notification settings - Fork 6
/
Podfile
67 lines (50 loc) · 1.16 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
install! 'cocoapods',
:warn_for_multiple_pod_sources => false
target 'WooOS-iOS' do
use_frameworks!
platform :ios, '9.3'
pod 'BraintreeDropIn'
pod 'Alamofire', '~> 4.7'
pod 'ObjectMapper', '~> 3.2'
pod 'Locksmith'
target 'WooOS-iOSTests' do
inherit! :search_paths
# Pods for testing
end
end
target 'WooOS-macOS' do
use_frameworks!
platform :osx, '10.11'
pod 'Alamofire', '~> 4.7'
pod 'ObjectMapper', '~> 3.2'
pod 'Locksmith'
target 'WooOS-macOSTests' do
inherit! :search_paths
# Pods for testing
end
end
target 'WooOS-tvOS' do
use_frameworks!
platform :tvos, '9.0'
pod 'Alamofire', '~> 4.7'
pod 'ObjectMapper', '~> 3.2'
pod 'Locksmith'
target 'WooOS-tvOSTests' do
inherit! :search_paths
# Pods for testing
end
end
target 'WooOS-watchOS' do
use_frameworks!
platform :watchos, '2.0'
pod 'Alamofire', '~> 4.7'
pod 'ObjectMapper', '~> 3.2'
pod 'Locksmith'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |configuration|
configuration.build_settings['SWIFT_VERSION'] = "4.0"
end
end
end