-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPodfile
37 lines (32 loc) · 787 Bytes
/
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
def all_pods
use_frameworks!
pod 'HockeySDK'
pod 'DRPLoadingSpinner'
pod 'CircleProgressView'
pod 'TTTAttributedLabel'
pod 'RaptureXML@Frankly'
pod 'ISO8601', :git => "https://github.com/soffes/ISO8601", :branch => "swift3"
pod 'GTMNSStringHTMLAdditions'
pod 'RealmSwift'
pod 'JVFloatLabeledTextField'
pod 'SORelativeDateTransformer'
pod 'SDWebImage'
pod 'JGProgressHUD'
pod '1PasswordExtension'
pod 'SnapKit'
pod 'DFCache'
pod 'Helpshift'
pod 'Reveal-SDK', :configuration => ['Debug']
end
target 'Facets' do
all_pods
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if config.name != "Release"
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
end
end