-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPodfile
58 lines (49 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
55
56
57
58
source 'https://github.com/artsy/Specs.git'
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '11.4'
use_frameworks!
inhibit_all_warnings!
# CI was having trouble shipping signed builds
# https://github.com/CocoaPods/CocoaPods/issues/4011
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ''
config.build_settings['CODE_SIGNING_REQUIRED'] = 'NO'
config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
end
end
end
def aq_ui
pod 'BGTableViewRowActionWithImage', '0.4.4'
pod 'FoldingCell', '3.1.5'
pod 'SnapKit', '4.0.0'
pod 'fluid-slider', '0.0.6'
pod 'GradientLoadingBar', '1.1.11'
pod 'Persei', '3.1'
pod 'PKHUD', '5.2.0'
pod 'WSTagsField', '3.2.0'
pod 'MaterialComponents/ProgressView', '70.1.0'
pod 'NotificationBannerSwift', '1.6.3'
pod 'MarqueeLabel/Swift', '3.1.6'
end
def aq_base
pod 'Spotify-iOS-SDK', '0.27.0', :modular_headers => true
pod 'CryptoSwift', '0.11.0'
pod 'Kingfisher', '5.0.0'
pod 'LetterAvatarKit', '1.1.5'
pod 'SwiftRandom', '1.0.0'
pod 'SwiftDate', '5.0.7'
end
def aq_data
pod 'CoreStore', '5.2.0'
end
def aq_system
pod 'ReachabilitySwift', '4.3.0'
end
target 'aqoo' do
aq_ui
aq_base
aq_data
aq_system
end