-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathOktaAnalytics.podspec
More file actions
22 lines (19 loc) · 954 Bytes
/
OktaAnalytics.podspec
File metadata and controls
22 lines (19 loc) · 954 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "OktaAnalytics"
s.version = "3.0"
s.summary = "Implementation of Analytics logger destination"
s.description = "Implementation of Analytics logger destination. Requires OktaLogger/Core"
s.homepage = "https://github.com/okta/okta-logger-swift"
s.license = { :type => 'APACHE2', :file => 'LICENSE' }
s.author = { "Okta Developers" => "developer@okta.com" }
s.source = { :git => "https://github.com/okta/okta-logger-swift.git", :tag => "OktaAnalytics-"+s.version.to_s }
s.osx.deployment_target = '11.0'
s.ios.deployment_target = '13.0'
s.swift_version = '5.0'
s.static_framework = true
s.source_files = 'Sources/OktaAnalytics/**/*.{h,m,swift}'
s.dependency 'AppCenter','~>5'
s.dependency 'OktaLogger/Core', '~>1'
s.dependency 'OktaSQLiteStorage', '~>0.1.0'
s.dependency 'Firebase/AnalyticsWithoutAdIdSupport'
end