-
Notifications
You must be signed in to change notification settings - Fork 141
/
Podfile
38 lines (33 loc) · 994 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
# Uncomment the next line to define a global platform for your project
platform :ios, '11.0'
def shared_pods
pod 'Alamofire', '~> 4.7'
end
target 'Susi' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for Susi
pod 'Motion', :git => 'https://github.com/CosmicMind/Motion.git', :branch => 'development'
pod 'Material', :git => 'https://github.com/CosmicMind/Material.git', :branch => 'development'
pod 'Toast-Swift', '~> 4.0.0'
pod 'SwiftValidators'
pod 'BouncyLayout'
pod 'RealmSwift'
pod 'ReadabilityKit'
pod 'Kingfisher', '~> 4.10.0'
pod 'SwiftDate', '~> 4.5.0'
pod 'NVActivityIndicatorView'
pod 'Fakery', '~> 3.3.0'
pod 'M13Checkbox'
pod 'ReachabilitySwift'
pod 'Localize-Swift'
pod 'paper-onboarding'
pod 'FTPopOverMenu_Swift', '~> 0.1.3'
pod 'CTShowcase', '~> 2.4'
pod 'SwiftKeychainWrapper'
shared_pods
end
target 'SusiUITests' do
use_frameworks!
shared_pods
end