-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
139 lines (99 loc) · 3.4 KB
/
Podfile
File metadata and controls
139 lines (99 loc) · 3.4 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'NLive' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for NLive
#############
# DATA FLOW #
#############
# RxSwift
#pod 'RxSwift', '~> 3.0'
#pod 'RxCocoa', '~> 3.0'
# ReSwift
pod 'ReSwift', '~> 4.0'
########################
# NETWORKING & PARSING #
########################
# JSON-parsing
# https://github.com/Anviking/Decodable
pod 'Decodable', '~> 0.5'
# Network abstraction
# https://github.com/Moya/Moya
# pod 'Moya/RxSwift'
# pod 'Moya', '~> 9.0'
pod 'Moya', :git => 'git@github.com:Moya/Moya.git', :branch => '9.0.0-dev'
# pod 'Moya-Decodable', :git => 'git@github.com:agiletalk/Moya-Decodable.git', :branch => 'master'
# pod 'Moya-SwiftyJSONMapper', '~> 2.2.0'
# Permissions
# https://github.com/nickoneill/PermissionScope
# pod 'PermissionScope', :git => 'git@github.com:nikans/PermissionScope.git', :branch => 'feature-callbacks'
# Images Loading & Caching
# https://github.com/kean/Nuke
pod 'Nuke', '~> 5.0'
###########
# STORAGE #
###########
# https://realm.io/docs/swift/latest/
# https://github.com/realm/realm-cocoa
pod 'RealmSwift', '~> 2.8'
#############
# STREAMING #
#############
pod 'MobileVLCKit-unstable', '= 3.0.0a8'
##################
# USER INTERFACE #
##################
# UI colors
# https://github.com/ViccAlexander/Chameleon
# pod 'ChameleonFramework/Swift', :git => 'https://github.com/ViccAlexander/Chameleon.git'
# Keyboard callbacks handler
# https://github.com/totocaster/Typist
# pod 'Typist', '~> 1.0.0'
# Programmatic Autolayout
# https://github.com/SnapKit/SnapKit
pod 'SnapKit', '~> 3.2'
# Device detection
# https://github.com/Ekhoo/Device
pod "Device", '~> 3.0.2'
# Debug alerts
# https://github.com/ecnepsnai/GTAlertBar
# pod 'GTAlertBar' #, '~> 1.0.3'
# https://github.com/naoty/Timepiece
pod 'DateToolsSwift'
# https://github.com/pkluz/PKHUD
pod 'PKHUD', '~> 4.2'
# Android Tabs
# https://github.com/xmartlabs/XLPagerTabStrip
# pod 'XLPagerTabStrip', '~> 7.0'
# StatusBar notifications
# https://github.com/36Kr-Mobile/StatusBarNotificationCenter
pod 'StatusBarNotificationCenter', :git => 'git@github.com:nikans/StatusBarNotificationCenter.git'
# NavBar colours
# https://github.com/MoZhouqi/KMNavigationBarTransition#known-issues
pod 'KMNavigationBarTransition', '~> 1.0.0'
# https://github.com/kingiol/KDInteractiveNavigationController
# pod 'KDInteractiveNavigationController', '~> 0.2'
# https://github.com/lkzhao/Hero
# pod 'Hero', '~> 0.3.6'
# https://github.com/mamaral/Onboard
# pod 'Onboard', '~> 2.3.1'
##################
# TEXT & STRINGS #
##################
# Attributed strings
# https://github.com/malcommac/SwiftRichString
# pod 'SwiftRichString', '~> 0.9'
# https://github.com/tomkowz/Swifternalization
# pod 'Swifternalization', :git => 'git@github.com:tomkowz/Swifternalization.git', :branch => 'swift3'
# https://github.com/TTTAttributedLabel/TTTAttributedLabel
# pod 'TTTAttributedLabel', '~> 2.0'
target 'NLiveTests' do
inherit! :search_paths
# Pods for testing
end
target 'NLiveUITests' do
inherit! :search_paths
# Pods for testing
end
end