-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathPodfile
More file actions
25 lines (22 loc) · 751 Bytes
/
Podfile
File metadata and controls
25 lines (22 loc) · 751 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
use_frameworks!
target 'trySwift' do
platform :ios, '10.0'
pod 'XLPagerTabStrip', '~> 6.0.0'
pod 'Toucan', :git => 'https://github.com/vinzen/Toucan', :branch => 'swift3.0'
pod 'Timepiece', :git => 'https://github.com/NatashaTheRobot/Timepiece'
pod 'DynamicColor', '~> 3.1.0'
pod 'AcknowList', '~> 1.1'
pod 'RealmSwift', '~> 1.1.0'
end
target 'try Extension' do
platform :watchos, '3.0'
pod 'Timepiece', :git => 'https://github.com/NatashaTheRobot/Timepiece'
pod 'RealmSwift', '~> 1.1.0'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.0'
end
end
end