-
Notifications
You must be signed in to change notification settings - Fork 2
/
Podfile
41 lines (34 loc) · 1.09 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
35
36
37
38
39
40
41
# Uncomment this line to define a global platform for your project
platform :ios, '10.0'
# Uncomment this line if you're using Swift
use_frameworks!
workspace 'verification-ios-sdk'
project 'VerificationSample/VerificationSample.xcodeproj'
project 'Verification/Verification.xcodeproj'
def verification_pods
pod 'Alamofire', '~> 5.2'
pod 'PhoneNumberKit', '~> 3.1'
pod 'SwiftyBeaver'
end
target 'VerificationSample' do
project 'VerificationSample/VerificationSample.xcodeproj'
verification_pods
pod 'SwiftEventBus', :tag => '5.0.1', :git => 'https://github.com/cesarferreira/SwiftEventBus.git'
end
target 'Verification' do
project 'Verification/Verification.xcodeproj'
verification_pods
target 'VerificationTests' do
inherit! :complete
pod 'Mocker', '~> 2.2.0'
end
end
post_install do |installer|
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
end
end
end
end