-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPodfile
executable file
·70 lines (58 loc) · 1.4 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
65
66
67
68
69
70
platform :ios, '11.0'
use_frameworks!
inhibit_all_warnings!
def shared_pods
# Utility
pod 'SwiftyJSON'
pod 'DataCache', :git => 'https://github.com/huynguyencong/DataCache.git'
pod 'ReachabilitySwift'
# Analytics
pod 'Firebase/Core'
end
target 'StockSwipe' do
shared_pods
# Utility
pod 'SDVersion'
pod 'SWXMLHash'
# Analytics
pod 'ChimpKit'
pod 'Branch'
# Parse
pod 'Parse'
pod 'Parse/FacebookUtils'
pod 'Parse/TwitterUtils'
pod 'Parse/UI'
# Facebook
pod 'FacebookCore'
pod 'FacebookLogin'
pod 'FacebookShare'
# Twitter
pod 'TwitterKit'
# UI/Animation
pod 'MDCSwipeToChoose', :git => 'https://github.com/acegreen/MDCSwipeToChoose.git'
pod 'Charts'
pod 'BubbleTransition'
pod 'DZNEmptyDataSet'
pod 'AMPopTip'
pod 'NotificationBannerSwift'
pod 'SKSplashView', :git =>'https://github.com/acegreen/SKSplashView.git', :branch => 'ag-improvements'
pod 'NVActivityIndicatorView'
pod 'UICountingLabel'
# Retired
#pod 'LaunchKit'
#pod 'PulsingHalo', :git => 'https://github.com/shu223/PulsingHalo.git'
#pod 'Spring', :git => 'https://github.com/MengTo/Spring.git', :branch => 'swift2'
#pod 'ChameleonFramework/Swift'
#pod 'SwiftSpinner'
#pod 'Fabric'
#pod 'Answers'
#pod 'TwitterCore'
end
target 'StockSwipeTests' do
inherit! :search_paths
shared_pods
pod 'OHHTTPStubs/Swift', '~> 8.0'
end
target 'StockSwipeWidget' do
shared_pods
end