Podfile
1.05 KB
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
use_frameworks!
source 'https://github.com/CocoaPods/Specs.git'
source 'http://bj.gitlab.cnlive.com/ios-team/CNLiveRepos.git'
platform :ios, '9.0'
target 'CNLiveServiceCenterModule_Example' do
pod 'CNLiveServiceCenterModule', :path => '../'
#依赖三方私有库,如果里面有.a的时候加上这个
pre_install do |installer| Pod::Installer::Xcode::TargetValidator.send(:define_method, :verify_no_static_framework_transitive_dependencies) {}
# #TODO:后面都注释掉直接在主工程导入
# #认证模块
# pod 'CNLiveOrganizationValidationModule'
# #用户认证模块
# pod 'CNLiveBPersonalVerificationModule'
#
# #用户内容
# pod 'CNLiveSDKs'
end
target 'CNLiveServiceCenterModule_Tests' do
inherit! :search_paths
# #TODO:后面都注释掉直接在主工程导入
# #认证模块
# pod 'CNLiveOrganizationValidationModule'
# #用户认证模块
# pod 'CNLiveBPersonalVerificationModule'
#
# #用户内容
# pod 'CNLiveSDKs'
end
end