-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPodfile
54 lines (40 loc) · 1.27 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
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
use_frameworks!
target 'BreakOut' do
# Push Notifications
pod 'OneSignal', '>= 2.5.2', '< 3.0'
# Model and API Calls
pod 'Sweeft', '~> 0.9'
# Analytics
pod 'Fabric', '~> 1.6.7'
pod 'Crashlytics', '~> 3.7.0'
# Flurry -> App Analytics (Funnel, ...)
pod 'Flurry-iOS-SDK/FlurrySDK', '~> 7.5.2' # Thinking about removing it...
# Database
pod 'Pantry' # Want to remove this
# Networking
pod 'Alamofire', '~> 4.0' # Should remove this soon
# UI
pod 'SpinKit', '~> 1.2.0' # I still have no idea why we have this
pod 'SlideMenuControllerSwift', '~> 3.0.0'
pod 'StaticDataTableViewController', '~> 2.0'
pod 'DTPhotoViewerController'
# Chat UI
pod 'NMessenger’, '1.0.79'
pod 'KSTokenView', '~> 3.1'
pod 'MDGroupAvatarView', :git => 'https://github.com/mathiasquintero/MDGroupAvatarView.git'
# Team UI
pod 'Pageboy', '~> 0.4.11'
pod 'MXParallaxHeader'
target 'BreakOutTests' do
inherit! :search_paths
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.2'
end
end
end