-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
30 lines (25 loc) · 862 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
source 'https://github.com/CocoaPods/Specs.git'
platform :osx, '10.10'
use_frameworks!
target 'StarPteranoMac' do
pod 'Starscream'
pod 'SDWebImage'
pod 'SDWebImage/WebP'
pod 'SDWebImageAPNGCoder'
pod 'APNGKit'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
end
end
end
# EXPANDED_CODE_SIGN_IDENTITY: unbound variableでビルドエラーになったら
# Pods-<App>-frameworks.shで
# if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}"を
# if [ -n "${EXPANDED_CODE_SIGN_IDENTITY:-}"にする
# https://github.com/CocoaPods/CocoaPods/issues/8000
#