-
Notifications
You must be signed in to change notification settings - Fork 4
/
Podfile
64 lines (49 loc) · 1008 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
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
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '11.2'
use_frameworks!
pod 'SwiftLint'
def app_pods
pod 'KeePassKit', :git => 'https://github.com/maxep/KeePassKit.git', :branch => 'cocoapods', :submodules => true
pod 'FontAwesome.swift'
pod 'Navajo'
pod 'OneTimePassword'
end
def test_pods
pod 'Quick'
pod 'Nimble'
end
target 'MiKee' do
app_pods
target 'Tests' do
inherit! :search_paths
test_pods
end
target 'MiKit' do
inherit! :search_paths
pod 'KeychainAccess'
end
target 'ExtensionKit' do
inherit! :search_paths
pod 'KeychainAccess'
end
target 'WebExtension' do
inherit! :search_paths
end
target 'AutoFill' do
inherit! :search_paths
end
target 'Resources' do
pod 'SwiftGen'
end
end
target 'UITests' do
inherit! :search_paths
app_pods
test_pods
end
target 'Snapshots' do
inherit! :search_paths
app_pods
test_pods
pod 'SimulatorStatusMagic', :configurations => ['Debug']
end