-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
31 lines (26 loc) · 911 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
workspace 'NevisExampleApp'
project 'NevisExampleApp.xcodeproj'
use_frameworks!
IOSDeploymentTarget = '12.0'
target 'NevisExampleApp' do
platform :ios, IOSDeploymentTarget
pod 'FittedSheets', '= 2.7.1'
pod 'KRProgressHUD', '= 3.4.7'
pod 'MercariQRScanner', '= 1.9.0'
pod 'Reusable', '= 4.1.2'
pod 'RxCocoa', '= 6.8.0'
pod 'RxSwift', '= 6.8.0'
pod 'Swinject', '= 2.9.1'
pod 'SwinjectAutoregistration', '= 2.9.1'
pod 'Then', '= 3.0.0'
pod 'NevisMobileAuthentication', '~> 3.8.1', :configurations => ['Release']
pod 'NevisMobileAuthentication-Debug', '~> 3.8.1', :configurations => ['Debug']
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings["IPHONEOS_DEPLOYMENT_TARGET"] = IOSDeploymentTarget
config.build_settings['ENABLE_BITCODE'] = 'NO' # NMA SDK does not support Bitcode
end
end
end