forked from NghiaTranUIT/iOS-Awesome-Starter-Kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
52 lines (37 loc) · 807 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
44
45
46
47
48
49
50
#
# Created by : Nghia Tran
# Sun, 25th Sept 2016, Vietnam
#
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
use_frameworks!
# Pods
def important_pods
# Core
pod 'Alamofire', '~> 4.0'
pod 'AlamofireObjectMapper'
pod 'ObjectMapper', '~> 2.2'
pod 'ReSwift'
pod 'PromiseKit', '~> 4.0'
pod 'SwiftyBeaver'
pod 'DeviceKit', '~> 1.0'
pod 'SDWebImage'
# Customize
pod 'DGActivityIndicatorView'
# Data
pod 'RealmSwift'
pod 'ObjectMapper+Realm'
# Observable
pod 'RxSwift', '~> 3.0'
# Analytics
pod 'Fabric'
pod 'Crashlytics'
end
target 'iOS-Starter-Kit' do
important_pods
end
# Pods for Test
target 'iOS-Starter-KitTests' do
inherit! :search_paths
# Pods for testing
end