forked from CYBAVO/auth-sdk_ios_example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
executable file
·34 lines (28 loc) · 1.15 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
33
34
# Uncomment the next line to define a global platform for your project
platform :ios, '11.0'
source 'https://github.com/CocoaPods/Specs.git'
source 'https://bitbucket.org/cybavo/specs_501.git'
target 'CYBAVOAuthDemo' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for CYBAVOAuthDemo
pod 'CYBAVOLibmsec', '~> 1.0.0'
pod 'ObjectMapper', '3.5.1'
pod 'AlamofireObjectMapper', '5.2.1'
pod 'Alamofire', '4.9.0'
pod 'CryptoSwift', '1.0.0'
pod 'SwiftyUserDefaults', '4.0.0'
pod 'SwiftEventBus', :tag => '3.0.1', :git => 'https://github.com/cesarferreira/SwiftEventBus.git'
pod 'Toast-Swift', '~> 4.0.0'
pod 'SwiftOTP', '2.0.0'
pod 'CYBAVOAuth', '~> 1.2.0'
end
post_install do |installer|
installer.pods_project.build_configurations.each do |config|
#config.build_settings['CODE_SIGNING_ALLOWED'] = 'YES'
#config.build_settings.delete('CODE_SIGNING_REQUIRED')
config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
end
end