-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathPodfile
37 lines (29 loc) · 989 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
35
36
37
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
platform :ios, '10.0'
workspace 'AVSQLDebugger'
$podSource = {:path => './'}
_target 'AVSQLDebugger' do
project 'AVSQLDebugger/AVSQLDebugger.xcodeproj'
pod 'Criollo', '~> 0.4’
end
_target 'Example' do
project 'Example/Example.xcodeproj'
pod 'AVSQLDebugger', $podSource
_target 'ExampleTests' do
inherit! :search_paths
# Pods for testing
end
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"
config.build_settings['ENABLE_BITCODE'] = "NO"
config.build_settings['SWIFT_VERSION'] = "5.0"
config.build_settings['IPHONEOS_DEPLOYMENT__target'] = "10.0"
end
end
end