forked from dschien/SmartReceiptsiOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
66 lines (51 loc) · 1.14 KB
/
Copy pathPodfile
File metadata and controls
66 lines (51 loc) · 1.14 KB
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
platform :ios, '10.0'
inhibit_all_warnings!
use_frameworks!
project 'SmartReceipts.xcodeproj'
def pods
#AWS
pod 'AWSCognito'
pod 'AWSS3'
# File storage
pod 'FMDB'
pod 'Zip'
# UI
pod 'MRProgress'
pod 'Eureka'
pod 'XLPagerTabStrip', git: 'https://github.com/alexanderkhitev/XLPagerTabStrip.git'
pod 'Floaty', git: 'https://github.com/QuestofIranon/Floaty.git'
pod 'Toaster', git: 'https://github.com/devxoul/Toaster.git'
# Rx
pod 'RxSwift'
pod 'RxCocoa'
pod 'RxDataSources'
pod 'Moya/RxSwift'
# Utilites
pod 'CocoaLumberjack/Swift'
pod 'Alamofire'
pod 'Moya'
# Firebase
pod 'Firebase/Core'
pod 'Firebase/Analytics'
pod 'Firebase/Messaging'
pod 'Firebase/AdMob'
# Google
pod 'Fabric'
pod 'Crashlytics'
pod 'GTMAppAuth'
pod 'GoogleAPIClientForREST/Drive'
pod 'GoogleSignIn'
# Purchases
pod 'SwiftyStoreKit'
# Architecture
pod 'Viperit'
end
target 'SmartReceipts' do
pods
end
target 'SmartReceiptsTests' do
pods
pod 'RxBlocking'
pod 'RxTest'
pod 'Cuckoo'
end