forked from strongbox-password-safe/Strongbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
63 lines (45 loc) · 1.13 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
workspace 'StrongBox'
abstract_target 'common-mac' do
project 'macbox/MacBox.xcodeproj'
platform :osx, '10.9'
use_frameworks!
pod 'libsodium'
target 'Strongbox' do
end
target 'Strongbox-Outright-Pro' do
end
target 'Strongbox AutoFill' do
end
target 'Strongbox-Outright-Pro-AutoFill' do
end
end
abstract_target 'common-ios' do
project 'Strongbox.xcodeproj'
platform :ios, '9.3'
use_frameworks!
pod 'libsodium'
target 'Strongbox-iOS' do
use_frameworks!
pod 'MTBBarcodeScanner'
pod 'Reachability'
pod 'ISMessages'
pod 'ObjectiveDropboxOfficial'
pod 'OneDriveSDK'
pod 'GoogleAPIClientForREST/Drive'
pod 'GoogleSignIn'
end
target 'Strongbox-iOS-Family' do
use_frameworks!
pod 'MTBBarcodeScanner'
pod 'Reachability'
pod 'ISMessages'
pod 'ObjectiveDropboxOfficial'
pod 'OneDriveSDK'
pod 'GoogleAPIClientForREST/Drive'
pod 'GoogleSignIn'
end
target 'Strongbox-Auto-Fill' do
end
target 'Strongbox-Auto-Fill-Family' do
end
end