-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
27 lines (23 loc) · 939 Bytes
/
Podfile
File metadata and controls
27 lines (23 loc) · 939 Bytes
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
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'ViperSampleiOS' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for TopSwifts
pod 'R.swift', '7.3.2'
pod "PromiseKit", '8.1.1'
pod 'Alamofire', '~> 5.2'
# Configure build settings for frameworks and deployment compatibility.
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0'
config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
end
end
end
end