forked from defdeveu/code.ios.Vulnabank
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPodfile
More file actions
21 lines (20 loc) · 725 Bytes
/
Copy pathPodfile
File metadata and controls
21 lines (20 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
platform :ios, '12.0'
target 'vulnabankIOs' do
use_frameworks!
# Pods for vulnabankIOs
pod 'XMLCoder', '~> 0.9.0'
pod 'SwiftyRSA', '~> 1.5'
pod 'CryptoSwift', '~> 1.3'
pod 'OpenSSL', '1.0.0'
pod 'Swinject'
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
# config.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*]'] = 'arm64'
config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
config.build_settings['GENERATE_INFOPLIST_FILE'] = 'YES'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
end
end
end
end