-
Notifications
You must be signed in to change notification settings - Fork 22
/
Podfile
34 lines (27 loc) · 920 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
use_frameworks!
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
target 'Rickenbacker_Example' do
# pod 'Rickenbacker/Mediator', :path => './'
# pod 'Rickenbacker/MJRefresh', :path => './'
# pod 'Rickenbacker/DZNEmptyDataSet', :path => './'
pod 'Rickenbacker', :path => './'
# pod 'RxSwift'
# pod 'RxCocoa'
# pod 'CTMediator' # 组件化 target-action
# pod 'MJRefresh' # 刷新
# pod 'DZNEmptyDataSet' # 空数据展示
pod 'HBDNavigationBar' # 导航栏
end
## Ignore CocoaPods warnings
inhibit_all_warnings!
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['COMPILER_INDEX_STORE_ENABLE'] = "NO"
if config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'].to_f < 10.0
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '10.0'
end
end
end
end