-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathPodfile
More file actions
44 lines (33 loc) · 993 Bytes
/
Podfile
File metadata and controls
44 lines (33 loc) · 993 Bytes
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
43
# Uncomment the next line to define a global platform for your project
platform :ios, '11.2'
def shared_pods
pod 'stellar-ios-mac-sdk', git: 'https://github.com/Soneso/stellar-ios-mac-sdk.git', branch: 'master'
pod 'KeychainSwift', '~> 10.0'
pod 'Alamofire', '~> 4.7'
pod 'Repeat', '~> 0.5'
pod 'Reusable', '~> 4.0'
pod 'Cache', '~> 5.2'
end
target 'BlockEQ' do
use_frameworks!
workspace 'BlockEQ.xcworkspace'
project 'BlockEQ.xcodeproj'
shared_pods
pod 'SCLAlertView', :git => 'https://github.com/vikmeup/SCLAlertView-Swift', :branch => 'master'
pod 'Imaginary', :git => 'https://github.com/hyperoslo/Imaginary.git', :branch => 'master'
target 'BlockEQTests' do
inherit! :search_paths
end
target 'BlockEQSnapshotTests' do
inherit! :search_paths
pod 'SnapshotTesting'
end
end
target 'StellarHub' do
use_frameworks!
workspace 'BlockEQ.xcworkspace'
project 'StellarHub.xcodeproj'
shared_pods
target 'StellarHubTests' do
end
end