-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathPodfile
49 lines (38 loc) · 1.31 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
platform :ios, '10.0'
target 'Umbrella' do
use_frameworks!
inhibit_all_warnings!
pod 'SwiftLint'
pod 'Localize-Swift', '~> 2.0'
pod 'SQLite.swift/SQLCipher'
pod 'Files', :git => 'https://github.com/clayellis/Files.git'
pod 'FeedKit', '~> 8.0'
pod 'BTNavigationDropdownMenu', :git => 'https://github.com/lucascorrea/BTNavigationDropdownMenu.git'
pod 'Yams'
pod 'Toast-Swift', '~> 4.0.0'
pod 'Zip', '~> 1.1'
# pod 'SQLiteMigrationManager.swift', '0.6.0'
target 'UmbrellaTests' do
inherit! :search_paths
pod 'Quick'
pod 'Nimble'
end
pod 'Down'
end
post_install do |installer_representation|
installer_representation.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['CLANG_ENABLE_CODE_COVERAGE'] = 'NO'
config.build_settings['ENABLE_BITCODE'] = 'NO'
config.build_settings['ARCHS'] = 'arm64'
config.build_settings['SWIFT_VERSION'] = '4.2'
end
end
# installer_representation.pods_project.targets.each do |target|
# if target.name != 'MarkdownView' && target.name != 'Toast-Swift'
# target.build_configurations.each do |config|
# config.build_settings['SWIFT_VERSION'] = '4.0'
# end
# end
# end
end