-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPodfile
63 lines (45 loc) · 950 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
51
52
53
54
55
56
57
58
59
60
61
62
63
platform :ios, '10.0'
source 'https://github.com/CocoaPods/Specs.git'
# ignore all warnings from all pods
inhibit_all_warnings!
use_frameworks!
def common_pods
# RX Swift
pod 'RxSwift'
pod 'RxCocoa'
pod 'Action'
# Serial- Deserialization
pod 'Marshal', '~> 1.2'
# Protected Safe Passwords
pod 'KeychainAccess'
# R.Swift -> Generating Strong Typed Resources
pod 'R.swift'
# Networking
pod 'Moya', '~> 13.0.1'
# Realm Database
pod 'RealmSwift'
pod 'RxRealm'
# Keychain Wrapper
pod 'SwiftKeychainWrapper'
end
target 'HTWDD' do
common_pods
# Firebase
pod 'Firebase/Analytics'
pod 'Firebase/Crashlytics'
# TabMan
pod 'Tabman'
# Lottie
pod 'lottie-ios'
#ImageView
pod 'ImageScrollView'
#Timetable WeekView
pod 'JZCalendarWeekView'
target 'HTWDDTests' do
inherit! :search_paths
# Pods for testing
end
end
target 'HTWDD Today' do
common_pods
end