Podfile
2.14 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
42
43
44
45
46
47
48
49
50
51
52
53
source 'https://github.com/CocoaPods/Specs.git'
source ‘http://bj.gitlab.cnlive.com/ios-team/CNLiveRepos.git’
use_frameworks!
platform :ios, '9.0'
target 'CNLiveMyOrder_Example' do
pod 'CNLiveMyOrder', :path => '../'
#依赖三方私有库,如果里面有.a的时候加上这个
pre_install do |installer| Pod::Installer::Xcode::TargetValidator.send(:define_method, :verify_no_static_framework_transitive_dependencies) {}
end
post_install do |installer|
installer.pods_project.build_configuration_list.build_configurations.each do |configuration|
configuration.build_settings['CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES'] = 'YES'
end
end
pod 'MLeaksFinder'
pod 'FBRetainCycleDetector', '~> 0.1.4'
#pod 'CNLiveTripartiteManagement/Realm'
#pod 'CNLiveTripartiteManagement/MJExtension'
#pod 'CNLiveBaseKit'
# pod 'CNLiveTripartiteManagement/Masonry'
# pod 'CNLiveCommonCategory'
# pod 'CNLiveTripartiteManagement/FLAnimatedImage'
# pod 'YYKit'
# pod 'CNLiveRequestBastKit'
# pod 'CNLiveTripartiteManagement/MJRefresh'
#pod 'CNLiveCustomUI/CNLiveBasicsUI'
# pod 'YYCache'
target 'CNLiveMyOrder_Tests' do
inherit! :search_paths
#依赖三方私有库,如果里面有.a的时候加上这个
pre_install do |installer| Pod::Installer::Xcode::TargetValidator.send(:define_method, :verify_no_static_framework_transitive_dependencies) {}
end
pod 'MLeaksFinder'
pod 'FBRetainCycleDetector', '~> 0.1.4'
# pod 'YYCache'
# post_install do |installer|
# installer.pods_project.build_configuration_list.build_configurations.each do |configuration|
# configuration.build_settings['CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES'] = 'YES'
# end
# end
#pod 'CNLiveTripartiteManagement/Realm'
#pod 'CNLiveTripartiteManagement/MJExtension'
#pod 'CNLiveBaseKit'
# pod 'CNLiveTripartiteManagement/Masonry'
#pod 'CNLiveCommonCategory'
# pod 'CNLiveTripartiteManagement/FLAnimatedImage'
#pod 'YYKit'
#pod 'CNLiveRequestBastKit'
#pod 'CNLiveTripartiteManagement/MJRefresh'
# pod 'CNLiveCustomUI/CNLiveBasicsUI'
end
end