-
Notifications
You must be signed in to change notification settings - Fork 4
/
Podfile
44 lines (37 loc) · 1.03 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
platform :ios, '13.0'
use_modular_headers!
target 'OktaLogger' do
pod 'Firebase/AnalyticsWithoutAdIdSupport'
pod 'Firebase/Crashlytics', '~>11.3.0'
pod 'CocoaLumberjack/Swift', '~>3.6.0'
pod 'Instabug', '13.3.0'
pod 'SwiftLint', '0.51'
end
target 'OktaSQLiteStorage' do
pod 'GRDB.swift/SQLCipher','6.20.2'
pod 'SQLCipher', '4.5.5'
pod 'SwiftLint', '0.51'
end
target 'OktaAnalytics' do
pod 'OktaLogger/Core', :path => '.'
pod 'OktaSQLiteStorage', :path => '.'
pod 'AppCenter', '~>5.0.0'
pod 'SwiftLint', '0.51'
pod 'Firebase/AnalyticsWithoutAdIdSupport'
end
target 'OktaLoggerDemoApp' do
pod 'OktaLogger', :path => '.'
pod 'OktaAnalytics', :path => '.'
pod 'Firebase/Crashlytics', '~>11.3.0'
target 'OktaLoggerTests' do
inherit! :search_paths
end
end
target 'OktaSQLiteStorageTests' do
pod 'OktaSQLiteStorage', :path => '.'
end
target 'OktaAnalyticsTests' do
pod 'OktaAnalytics', :path => '.'
pod 'OktaSQLiteStorage', :path => '.'
pod 'AppCenter', '~>5.0.0'
end