-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathPodfile
64 lines (52 loc) · 1.97 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
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'Pisth' do
# ignore all warnings from all pods
inhibit_all_warnings!
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for Pisth
pod 'NMSSH', :git => 'https://github.com/ColdGrub1384/NMSSH.git', :branch => 'master'
pod 'Highlightr', :git => 'https://github.com/raspu/Highlightr.git', :branch => 'master'
pod 'Zip'
pod 'SwiftKeychainWrapper'
pod 'BiometricAuthentication', '~> 2.1'
pod 'ActionSheetPicker-3.0'
pod 'Firebase/Core'
pod 'WhatsNew', '~> 0.4.4'
pod 'ObjectUserDefaults'
end
target 'PisthTests' do
# ignore all warnings from all pods
inhibit_all_warnings!
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for Pisth
pod 'NMSSH', :git => 'https://github.com/ColdGrub1384/NMSSH.git', :branch => 'master'
pod 'Highlightr', :git => 'https://github.com/raspu/Highlightr.git', :branch => 'master'
pod 'Zip'
pod 'SwiftKeychainWrapper'
pod 'BiometricAuthentication', '~> 2.1'
pod 'ActionSheetPicker-3.0'
pod 'Firebase/Core'
pod 'PanelKit'
pod 'WhatsNew', '~> 0.4.4'
pod 'ObjectUserDefaults'
end
# post install
post_install do |installer|
# Build settings
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings = config.build_settings.dup
if config.build_settings['PRODUCT_MODULE_NAME'] == 'PanelKit'
puts "Set Swift version for PanelKit"
config.build_settings['SWIFT_VERSION'] = '4.0'
end
if config.build_settings['PRODUCT_MODULE_NAME'] == 'NMSSH'
puts "Disable bitcode for NMSSH"
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
end
end