This repository has been archived by the owner on Aug 31, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Podfile
106 lines (91 loc) · 2.8 KB
/
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
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
# Uncomment this line to define a global platform for your project
platform :ios, '9.0'
# Uncomment this line if you're using Swift
use_frameworks!
$AlamofireVersion = '~> 4.4.0'
$PromiseKitVersion = '~> 4.2.2'
target 'Twidere' do
workspace 'Twidere'
project 'Twidere/Twidere'
pod 'Sourcery', '~> 0.7'
pod 'PMJSON', '~> 2.0.2'
pod 'PMJackson', '~> 1.1.4'
pod 'SQLite.swift', '~> 0.11.0'
pod 'CryptoSwift', '~> 0.6.0'
pod 'Alamofire', $AlamofireVersion
pod 'PromiseKit/Alamofire', $PromiseKitVersion
pod 'JVFloatLabeledTextField', '~> 1.1' # Obj-C
pod 'ActionSheetPicker-3.0', '~> 2.0' # Obj-C
pod 'StaticDataTableViewController', '~> 2.0.5' # Obj-C
pod 'IQKeyboardManagerSwift', '~> 4.0.6' # Swift 3
pod 'Kanna', '~> 2.0' # Swift 3
pod 'SwiftyUserDefaults', '~> 3.0' # Swift 3
pod 'PromiseKit', $PromiseKitVersion # Swift 3
pod 'STPopup', '~> 1.8.0' # Obj-C
pod 'UITextView+Placeholder', '~> 1.2' # Obj-C
pod 'twitter-text', '~> 1.14' # Obj-C
pod 'UIView+TouchHighlighting', '~> 1.1' # Obj-C
pod 'SDWebImage', '~> 4.0.0' # Obj-C
pod 'JDStatusBarNotification', '~> 1.5.5' # Obj-C
pod 'UITableView+FDTemplateLayoutCell', '~> 1.5.beta' # Obj-C
pod 'DateTools', '~> 2.0' # Obj-C
pod 'ALSLayouts', '~> 3.0.2' # Swift 3
pod 'ThumborURL', '~> 0.0' # Obj-C
pod 'MXPagerView', '~> 0.1'
pod 'MXParallaxHeader', '~> 0.6.0'
pod 'FXBlurView', '~> 1.6'
pod 'FXImageView', '~> 1.3'
pod 'YYText', '~> 1.0'
pod 'DeviceKit', '~> 1.2'
pod 'SwiftHEXColors', '~> 1.1.0'
pod 'SnapKit', '~> 3.2.0'
pod 'Eureka', '~> 3.0'
pod 'Fabric'
pod 'Crashlytics'
end
target 'TwidereCore' do
workspace 'Twidere'
project 'TwidereCore/TwidereCore'
pod 'Alamofire', $AlamofireVersion
pod 'PMJackson', '~> 1.1.4'
pod 'PromiseKit', $PromiseKitVersion
pod 'Kanna', '~> 2.0'
end
target 'MicroBlog' do
workspace 'Twidere'
project 'TwidereCore/MicroBlog/MicroBlog'
pod 'Alamofire', $AlamofireVersion
pod 'PMJackson', '~> 1.1.4'
pod 'PromiseKit', $PromiseKitVersion
end
target 'Mastodon' do
workspace 'Twidere'
project 'TwidereCore/Mastodon/Mastodon'
pod 'Alamofire', $AlamofireVersion
pod 'PMJackson', '~> 1.1.4'
pod 'PromiseKit', $PromiseKitVersion
end
target 'RestClient' do
workspace 'Twidere'
project 'RestClient/RestClient'
pod 'Alamofire', $AlamofireVersion
pod 'PromiseKit/Alamofire', $PromiseKitVersion
pod 'PromiseKit', $PromiseKitVersion
pod 'CryptoSwift', '~> 0.6.0'
end
target 'RestCommons' do
workspace 'Twidere'
project 'RestCommons/RestCommons'
pod 'Alamofire', $AlamofireVersion
pod 'PromiseKit/Alamofire', $PromiseKitVersion
pod 'PromiseKit', $PromiseKitVersion
pod 'PMJackson', '~> 1.1.4'
end
target 'TwidereTests' do
workspace 'Twidere'
project 'Twidere/Twidere'
end
target 'TwidereUITests' do
workspace 'Twidere'
project 'Twidere/Twidere'
end