-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathWebtrekk.podspec
More file actions
30 lines (22 loc) · 1.18 KB
/
Webtrekk.podspec
File metadata and controls
30 lines (22 loc) · 1.18 KB
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
Pod::Spec.new do |s|
s.name = 'Webtrekk'
s.version = '4.2.0'
s.author = { 'Webtrekk' => 'arsen.vartbaronov@webtrekk.com' }
s.homepage = 'https://www.webtrekk.com/en/solutions/mobile-analytics/'
s.license = { :type => 'MIT', :file => 'LICENSE.MD' }
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.source = { :git => 'https://github.com/Webtrekk/webtrekk-ios-sdk.git', :tag => s.version }
s.summary = 'The Webtrekk SDK allows you to track user activities, screen flow and media usage for an App.'
s.module_map = 'Module/Module.modulemap'
s.source_files = 'Sources/**/*.swift', 'Module/Module.h'
s.watchos.exclude_files = 'Sources/Internal/Utility/UIDevice.swift', 'Sources/Internal/Utility/UIViewController.swift', 'Sources/Internal/Trackers/AVPlayerTracker.swift'
s.frameworks = 'Foundation', 'UIKit'
s.ios.frameworks = 'AVFoundation', 'AVKit', 'CoreTelephony'
s.watchos.frameworks = 'WatchKit'
s.ios.deployment_target = '8.0'
#s.watchos.deployment_target = '2.0' # not yet supported
s.dependency 'CryptoSwift', '0.6.0'
s.ios.dependency 'ReachabilitySwift', '~> 3.0.0'
s.tvos.dependency 'ReachabilitySwift', '~> 3.0.0'
end