forked from sunsx9316/DanDanPlayForiOS
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Podfile
86 lines (73 loc) · 2.46 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
# Uncomment the next line to define a global platform for your project
platform :ios, '13.0'
inhibit_all_warnings!
# install! 'cocoapods', generate_multiple_pod_projects: true
abstract_target 'DDPlay_Target' do
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks
use_frameworks!
# pod 'JHDanmakuRender', :path => 'LocalPods/JHDanmakuRender'
pod 'YYUtility', :path => 'LocalPods/YYUtility'
pod 'Masonry'
pod 'YYModel'
pod 'YYCategories'
pod 'MJRefresh'
pod 'MBProgressHUD'
pod 'JHDanmakuRender'
pod 'UITableView+FDTemplateLayoutCell'
pod 'RATreeView'
pod 'WMPageController'
pod 'IQKeyboardManager'
pod 'DZNEmptyDataSet'
pod 'NKOColorPickerView'
pod 'YYKeyboardManager'
pod 'MGSwipeTableCell'
pod 'iCarousel'
pod 'BlocksKit'#, :path => 'LocalPods/BlocksKit'
pod 'YYWebImage', :git => 'https://github.com/sunsx9316/YYWebImage_UIKitForMac.git'
pod 'DDPShare', :path => 'LocalPods/DDPShare'
pod 'SSZipArchive'
pod 'AFNetworking'
pod 'Ono'
abstract_target 'iOS_Only' do
pod 'UMCCommon'
pod 'UMCSecurityPlugins'
# 集成新浪微博
pod 'UMCShare/Social/ReducedSina'
# 集成QQ
pod 'UMCShare/Social/ReducedQQ'
# 集成微信
pod 'UMCShare/Social/ReducedWeChat'
# 友盟统计
# pod 'UMCAnalytics'
pod 'Bugly'
#内存泄露检测
# pod 'MLeaksFinder', :configurations => ['Debug']
pod 'DDPEncrypt', :path => 'LocalPods/Encrypt'
pod 'WCDB'
pod 'MobileVLCKit'#, '3.3.10'#:path => 'LocalPods/MobileVLCKit'
pod 'Ono'
target 'DDPlay' do
pod 'TOSMBClient', '~> 1.0.5'
pod 'CocoaHTTPServer', :git => "https://github.com/wolfcon/CocoaHTTPServer.git"
end
target 'DDPlay_Review' do
pod 'TOSMBClient', '~> 1.0.5'
pod 'CocoaHTTPServer', :git => "https://github.com/wolfcon/CocoaHTTPServer.git"
end
end
target 'DDPlay_ToMac' do
# pod 'AFNetworking', :git => 'https://github.com/sunsx9316/AFNetworking_UIKitForMac.git'
pod 'CocoaLumberjack'
pod 'DDPShare', :path => 'LocalPods/DDPShare'
# pod 'WCDB_UIKitForMac', :path => 'LocalPods/WCDB'
pod 'CocoaHTTPServer', :git => "https://github.com/wolfcon/CocoaHTTPServer.git"
# pod 'TOSMBClient', '~> 1.0.5'
end
end
post_install do |pi|
pi.pods_project.targets.each do |t|
t.build_configurations.each do |bc|
bc.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
end
end
end