-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathPodfile
50 lines (40 loc) · 1.08 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
# Uncomment the next line to define a global platform for your project
source 'https://github.com/CocoaPods/Specs.git'
platform :osx, '10.13'
use_frameworks!
#use_modular_headers!
def common_pods
pod 'Masonry'
pod 'SnapKit'
pod 'SnapKitExtend'
pod 'RxBlocking'
pod 'RxCocoa'
pod 'RxSwift'
pod 'YYModel'
pod 'HandyJSON'
pod 'NNButton'
pod 'NNLabel'
pod 'SwiftExpand'
pod 'Then'
pod 'Highlightr'
end
target 'MacTemplet' do
common_pods
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle"
target.build_configurations.each do |config|
config.build_settings["CODE_SIGNING_ALLOWED"] = false;
# config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = '10.13';
end
end
end
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = '10.13';
end
end
end
end