-
Notifications
You must be signed in to change notification settings - Fork 5
/
Podfile
38 lines (32 loc) · 885 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
source 'https://github.com/CocoaPods/Specs.git'
target 'YYMusic' do
platform :ios, '10.0'
use_frameworks!
# 忽略pod警告
inhibit_all_warnings!
pod 'Alamofire', '~> 5.0.0'
pod 'Kingfisher', '~> 5.13.1'
pod 'ObjectMapper', '~> 3.5.1'
pod 'PKHUD', '~> 5.3.0'
pod 'SnapKit', '~> 5.0.1'
pod 'MJRefresh', '~> 3.3.1'
pod 'HWPanModal', '~> 0.6.7'
pod 'ZFPlayer', '~> 3.2.17'
pod 'ZFPlayer/AVPlayer', '~> 3.2.17'
pod 'ZFPlayer/ControlView', '~> 3.2.17'
pod 'MarqueeLabel/Swift', '~> 3.2.1'
target 'YYMusicTests' do
inherit! :search_paths
# Pods for testing
end
target 'YYMusicUITests' do
# Pods for testing
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '5.0'
end
end
end