forked from rursache/ToDoList
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
42 lines (35 loc) · 946 Bytes
/
Podfile
File metadata and controls
42 lines (35 loc) · 946 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
inhibit_all_warnings!
use_frameworks!
target 'ToDoList' do
platform :ios, '11.0'
pod 'LKAlertController'
pod 'ActionSheetPicker-3.0', :git => 'https://github.com/skywinder/ActionSheetPicker-3.0'
pod 'IceCream', :git => 'https://github.com/rursache/IceCream.git'
pod 'UnderKeyboard'
pod 'ActiveLabel'
pod 'Realm'
pod 'RealmSwift'
pod 'RSTextViewMaster'
pod 'AcknowList'
pod 'Loaf'
pod 'Robin'
pod 'ImageViewer.swift'
pod 'BulletinBoard'
target 'ToDoListWidget' do
inherit! :search_paths
end
target 'WatchApp Extension' do
platform :watchos, '6.0'
pod 'Realm'
pod 'RealmSwift'
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if ['AcknowList', 'UnderKeyboard', 'ImpressiveNotifications'].include? target.name
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '4.2'
end
end
end
end