-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
executable file
·40 lines (34 loc) · 779 Bytes
/
Podfile
File metadata and controls
executable file
·40 lines (34 loc) · 779 Bytes
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
platform :ios, ‘10.0’
use_frameworks!
inhibit_all_warnings!
target 'Docha' do
pod 'AFNetworking', '~> 3.0'
pod 'SwiftyJSON'
pod 'Kingfisher', '~> 3.0'
pod 'SnapKit', '>= 3.0.0'
pod 'CNPPopupController'
pod 'Alamofire', '~> 4.0'
pod 'TextFieldEffects'
pod 'PageMenu'
pod 'IQKeyboardManagerSwift'
pod 'MBCircularProgressBar'
pod 'PBWebViewController'
pod 'Fabric'
pod 'Crashlytics'
pod 'Amplitude-iOS', '~> 3.7.0'
pod 'RSKImageCropper'
pod 'SACountingLabel'
pod 'SWTableViewCell', '~> 0.3.7'
pod 'PullToRefresher', '~> 1.4.0'
pod 'SAConfettiView'
end
def testing_pods
pod 'Quick'
pod 'Nimble'
end
target 'DochaTests' do
testing_pods
end
target 'DochaUITests' do
testing_pods
end