forked from sinch/verification-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
32 lines (26 loc) · 858 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
# 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 'ReachabilitySwift'
pod 'PhoneNumberKit', '~> 3.1'
pod 'CocoaLumberjack/Swift', '~> 3.7.0'
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