-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathPodfile
32 lines (27 loc) · 1.16 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
source 'https://github.com/CocoaPods/Specs.git'
source '[email protected]:yoomoney/cocoa-pod-specs.git'
platform :ios, '10.0'
project 'YooKassaPaymentsDemoApp.xcodeproj'
workspace 'YooKassaPayments.xcworkspace'
target 'YooKassaPaymentsDemoApp' do
use_frameworks!
pod 'SwiftLint'
pod 'Reveal-SDK', :configurations => ['Debug']
pod 'YooKassaPayments', :path => './'
pod 'CardIO', :path => './CardIO'
pod 'YooKassaPaymentsApi', '~> 2.11.0'
end
post_install do |installer|
puts "Turn off build_settings 'Require Only App-Extension-Safe API' on all pods targets"
puts "Turn on build_settings 'Supress swift warnings' on all pods targets"
puts "Turn off build_settings 'Documentation comments' on all pods targets"
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'NO'
config.build_settings['PROVISIONING_PROFILE_SPECIFIER'] = ''
config.build_settings['APPLICATION_EXTENSION_API_ONLY'] = 'NO'
config.build_settings['CLANG_WARN_DOCUMENTATION_COMMENTS'] = 'NO'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '10.0'
end
end
end