-
Notifications
You must be signed in to change notification settings - Fork 2
/
Podfile
42 lines (35 loc) · 994 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
38
39
40
41
42
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '13.0'
inhibit_all_warnings!
use_frameworks!
plugin 'cocoapods-art', :sources => ['onegini']
def oneginiSDKiOS
pod 'OneginiSDKiOS', '~> 12.3.6'
end
def externalRegularDependencies
pod 'Swinject', '2.8.1'
pod 'BetterSegmentedControl', '~> 2.0.0'
pod 'TransitionButton', '0.5.3'
pod 'SkyFloatingLabelTextField', '~> 3.0'
pod 'SwiftLint', '~> 0.50'
end
target 'WidgetExtension' do
oneginiSDKiOS
end
target 'OneWelcomeExampleApp' do
oneginiSDKiOS
externalRegularDependencies
end
target 'OneWelcomeExampleAppDebug' do
oneginiSDKiOS
externalRegularDependencies
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
config.build_settings['ENABLE_BITCODE'] = 'NO'
config.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*]'] = 'arm64'
end
end
end