forked from kinecosystem/kin-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
74 lines (57 loc) · 1.49 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
workspace 'kin-ios'
platform :ios, '10.0'
install! 'cocoapods', :deterministic_uuids => false
use_frameworks!
def kin_base_dependencies
pod 'kin-stellar-ios-mac-sdk', '~> 1.7.5'
pod 'PromisesSwift', '~> 1.2.8'
pod 'KinGrpcApi', :git => 'git@github.com:kinecosystem/kin-ios.git'
end
def kin_base_compat_dependencies
kin_base_dependencies
pod 'Sodium', '0.8.0'
end
target 'KinBase' do
project 'KinBase/KinBase'
kin_base_dependencies
target 'KinBaseTests' do
inherit! :search_paths
# Pods for testing
kin_base_dependencies
end
end
target 'KinSDK' do
project 'KinBaseCompat/KinBaseCompat'
kin_base_compat_dependencies
target 'KinBaseCompatTests' do
inherit! :search_paths
# Pods for testing
kin_base_compat_dependencies
end
end
target 'KinUX' do
project 'KinUX/KinUX'
kin_base_dependencies
target 'KinUXTests' do
inherit! :search_paths
# Pods for testing
kin_base_dependencies
end
end
target 'KinSDKSampleApp' do
project 'KinSDKSampleApp/KinSDKSampleApp'
kin_base_compat_dependencies
end
target 'KinBackupRestoreSampleApp' do
project 'KinBackupRestoreSampleApp/KinBackupRestoreSampleApp'
kin_base_compat_dependencies
end
target 'KinSampleApp' do
project 'KinSampleApp/KinSampleApp'
# For local development, comment out this and pull KinBase framework locally into project framework dependency, and reinstall pod
kin_base_dependencies
target 'KinSampleAppTests' do
inherit! :search_paths
# Pods for testing
end
end