forked from strongbox-password-safe/Strongbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
109 lines (83 loc) · 2.14 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
workspace 'StrongBox'
use_frameworks!
abstract_target 'common-mac' do
project 'macbox/MacBox.xcodeproj'
platform :osx, '10.15'
pod 'libsodium'
pod 'Down'
target 'Mac-Freemium' do
pod 'MSAL'
pod 'MSGraphClientSDK'
pod 'GoogleAPIClientForREST/Drive'
pod 'GoogleSignIn'
pod 'ObjectiveDropboxOfficial'
end
target 'Mac-Pro' do
pod 'MSAL'
pod 'MSGraphClientSDK'
pod 'GoogleAPIClientForREST/Drive'
pod 'GoogleSignIn'
pod 'ObjectiveDropboxOfficial'
end
target 'Mac-Unified-Freemium' do
pod 'MSAL'
pod 'MSGraphClientSDK'
pod 'GoogleAPIClientForREST/Drive'
pod 'GoogleSignIn'
pod 'ObjectiveDropboxOfficial'
end
target 'Mac-Unified-Pro' do
pod 'MSAL'
pod 'MSGraphClientSDK'
pod 'GoogleAPIClientForREST/Drive'
pod 'GoogleSignIn'
pod 'ObjectiveDropboxOfficial'
end
target 'Mac-Freemium-AutoFill' do
end
target 'Mac-Unified-Freemium-AutoFill' do
end
target 'Mac-Unified-Pro-AutoFill' do
end
target 'Mac-Pro-AutoFill' do
end
end
abstract_target 'common-ios' do
project 'Strongbox.xcodeproj'
platform :ios, '11.0'
pod 'libsodium'
pod 'Down'
target 'Strongbox-iOS' do
pod 'ISMessages'
pod 'MTBBarcodeScanner'
pod 'ObjectiveDropboxOfficial'
pod 'GoogleAPIClientForREST/Drive'
pod 'GoogleSignIn'
pod 'MSAL'
pod 'MSGraphClientSDK'
end
target 'Strongbox-iOS-Pro' do
pod 'ISMessages'
pod 'MTBBarcodeScanner'
pod 'ObjectiveDropboxOfficial'
pod 'GoogleAPIClientForREST/Drive'
pod 'GoogleSignIn'
pod 'MSAL'
pod 'MSGraphClientSDK'
end
target 'Strongbox-iOS-SCOTUS' do
pod 'ISMessages'
end
target 'Strongbox-iOS-Graphene' do
pod 'MTBBarcodeScanner'
pod 'ISMessages'
end
target 'Strongbox-Auto-Fill' do
end
target 'Strongbox-Auto-Fill-Pro' do
end
target 'Strongbox-Auto-Fill-SCOTUS' do
end
target 'Strongbox-Auto-Fill-Graphene' do
end
end