-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathPodfile
47 lines (35 loc) · 1007 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
39
40
41
42
43
44
45
46
47
# Uncomment the next line to define a global platform for your project
platform :ios, '8.0'
install! 'cocoapods', :deterministic_uuids => false
source 'https://github.com/CocoaPods/Specs.git'
#source 'https://git.coding.net/Zard1096/VideoPlsPodsRepo.git'
workspace 'VideoPlsWorkspace'
project 'Example/VPInterfaceControllerDemo'
target 'VPInterfaceControllerDemo' do
pod 'VideoOS', :path => '.'
pod 'VideoOS/ACRCloud', :path => '.'
pod 'Bugly'
pod 'UMengAnalytics-NO-IDFA'
pod 'Masonry'
pod 'MBProgressHUD'
pod 'SVGAPlayer'
end
target 'VideoOSDevApp' do
pod 'VideoOS', :path => '.'
pod 'VideoOS/ACRCloud', :path => '.'
pod 'Bugly'
pod 'UMengAnalytics-NO-IDFA'
pod 'Masonry'
pod 'MBProgressHUD'
pod 'SVGAPlayer'
end
# 加入这些配置
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == "Masonry"
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '8.0'
end
end
end
end