-
Notifications
You must be signed in to change notification settings - Fork 1
/
Podfile
54 lines (45 loc) · 1.39 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
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'Domain' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
pod 'RxSwift'
# Pods for Domain
end
target 'NetworkPlatform' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
pod 'RxSwift'
pod 'RxCocoa'
pod 'Alamofire'
pod 'RxAlamofire'
pod 'SpotifyLogin', '~> 0.1'
# Pods for NetworkPlatform
target 'NetworkPlatformTests' do
pod 'RxNimble', subspecs: ['RxBlocking', 'RxTest']
end
end
target 'SpotifyExplorer' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
pod 'RxCocoa'
pod 'RxSwift'
pod 'SpotifyLogin', '~> 0.1'
#UIPods
pod 'SDWebImage', '~> 5.0'
pod 'IQKeyboardManagerSwift'
pod 'RxDataSources'
pod 'Hero'
pod 'Stellar', :git => 'https://github.com/AugustRush/Stellar.git'
# pod 'BEKCurveTabbar', :git => 'https://github.com/behrad-kzm/BEKCurveTabbar.git'
pod 'BEKMultiCellTable', :git => 'https://github.com/behrad-kzm/BEKMultiCellTable.git'
pod 'lottie-ios'
# Pods for SpotifyExplorer
target 'SpotifyExplorerTests' do
inherit! :search_paths
pod 'RxNimble', subspecs: ['RxBlocking', 'RxTest']
end
target 'SpotifyExplorerUITests' do
# Pods for testing
end
end