-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathPodfile
43 lines (33 loc) · 819 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
37
38
39
40
41
42
43
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, 10.0
use_frameworks!
use_modular_headers!
inhibit_all_warnings!
def firebase
# enabled Analytics
pod 'Firebase/Analytics'
# enabled push notifications
pod 'Firebase'
pod 'Firebase/Messaging'
pod 'Firebase/InAppMessaging'
# enabled Crashlytics (Firebase)
pod 'Fabric', '~> 1.10.2'
pod 'Crashlytics', '~> 3.14.0'
# enabled Performance Monitoring
pod 'Firebase/Performance'
end
target 'ScalaDays' do
firebase
pod 'Alamofire', '~> 5.0'
pod 'TwitterKit', '3.4.2'
pod 'ZBarSDK', '~> 1.3.1'
# UI
pod 'SDWebImage', '~> 3.5'
pod 'SVProgressHUD', '~> 1.0'
pod 'UIView+AutoLayout', '~> 1.3'
# Utils
pod 'NSDate+TimeAgo', '~> 1.0.2'
target 'ScalaDays Notifications' do
inherit! :search_paths
end
end