-
Notifications
You must be signed in to change notification settings - Fork 94
/
Podfile
32 lines (28 loc) · 817 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
# Uncomment the next line to define a global platform for your project
target 'YCDownloadSessionDemo' do
pod 'YCDownloadSession', :path=>'./'
pod 'SDWebImage'
pod 'WMPlayer'
pod 'Masonry'
pod 'AFNetworking'
pod 'MJRefresh'
pod 'Bugly'
target 'YCDownloadSessionDemoTests' do
inherit! :search_paths
# Pods for testing
end
end
target 'YCDownloadSession' do
use_frameworks!
pod 'YCDownloadSession', :path=>'./'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if target.name != "YCDownloadSession"
config.build_settings['GCC_WARN_INHIBIT_ALL_WARNINGS'] = "YES"
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
end
end
end
end