-
Notifications
You must be signed in to change notification settings - Fork 1
/
Podfile
79 lines (66 loc) · 1.76 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
source 'https://github.com/CocoaPods/Specs.git'
platform:ios,'13.0'
install! 'cocoapods', generate_multiple_pod_projects: true
use_frameworks!
#ignore all warnings from all pods
inhibit_all_warnings!
def pods
inherit! :search_paths
#Swift
## RxSwift
pod 'RxSwift'
pod 'RxCocoa'
pod 'RxDataSources'
pod 'Action'
pod 'NSObject+Rx'
pod 'RxKingfisher'
pod 'Moya/RxSwift'
pod 'RxKeyboard'
pod 'RxBinding'
pod 'RxWebKit'
## Other
pod 'SnapKit'
pod 'R.swift'
pod 'IQKeyboardManagerSwift'
pod 'DQPopup'
pod 'EmptyDataSet-Swift'
pod 'DQSegmentedControl/Rx'
## Image
pod 'KingfisherWebP'
## Objective-C
pod 'DTCoreText'
pod 'SSZipArchive'
pod 'ZLCollectionViewFlowLayout' #, '~> 1.2.0'
pod 'MJRefresh'
pod 'MBProgressHUD'
#pod 'HMSegmentedControl'
#pod 'WechatOpenSDK'
## Push SDK
pod 'UMCCommon'
pod 'UMCPush'
pod 'UMCCommonLog', :configurations => ['Debug']
## Advertisement
pod 'Google-Mobile-Ads-SDK'
## DEBUG
#pod 'FBRetainCycleDetector', :configurations => ['Debug']
pod 'MLeaksFinder', :git => 'https://github.com/Tencent/MLeaksFinder.git', :tag => '1.1.0', :configurations => ['Debug']
pod 'LookinServer', :configurations => ['Debug']
end
target 'EBook' do
pods
target 'EBookTests' do
inherit! :search_paths
end
end
post_install do |installer|
installer.pod_target_subprojects.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
end
end
installer.pod_target_subprojects.flat_map { |p| p.targets }.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
end
end
end