-
Notifications
You must be signed in to change notification settings - Fork 103
/
Copy pathPodfile
executable file
·55 lines (44 loc) · 1.29 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
source 'https://cdn.cocoapods.org/'
install! 'cocoapods',
:generate_multiple_pod_projects => true
deployment_target = '11.0'
platform :ios, deployment_target
inhibit_all_warnings!
use_frameworks!
def hearttrip_services
# 基础组件
pod 'VinBaseComponents', :git => 'https://github.com/BinBear/VinBaseComponents.git'
pod 'FoldingTabBar', :git => 'https://github.com/BinBear/FoldingTabBar.iOS.git'
end
target 'HeartTrip' do
# 服务组件
hearttrip_services
# 三方组件
pod 'CocoaLumberjack'
pod 'QMUIKit'
pod 'KafkaRefresh'
pod 'Masonry'
pod 'IQKeyboardManager'
pod 'SDWebImage'
pod 'lottie-ios'
pod 'Texture'
pod 'YYModel'
pod 'YYCategories'
pod 'LBXPermission'
pod 'Bugly'
pod 'FluentDarkModeKit'
pod 'LookinServer', :configurations => ['Debug']
pod 'DoraemonKit/Core', :configurations => ['Debug']
end
post_install do |installer|
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = deployment_target
end
end
project.build_configurations.each do |bc|
bc.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = deployment_target
end
end
end