forked from thebugcode/webtrekk-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWebtrekk.podspec
More file actions
31 lines (25 loc) · 1.48 KB
/
Webtrekk.podspec
File metadata and controls
31 lines (25 loc) · 1.48 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
31
Pod::Spec.new do |s|
s.name = 'Webtrekk'
s.version = '4.14.0'
s.author = { 'Webtrekk GmbH' => 'martin.demiddel@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.watchos.deployment_target = '2.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 your App.'
s.module_map = 'Module/Module.modulemap'
s.source_files = 'Source/**/*.swift', 'Module/Module.h', 'Source/Internal/Utility/CatchObC.*'
s.ios.exclude_files = 'Source/Internal/Utility/WKInterfaceController.swift'
s.tvos.exclude_files = 'Source/Internal/Utility/WKInterfaceController.swift'
s.watchos.exclude_files = 'Source/Internal/Utility/UIDevice.swift', 'Source/Internal/Utility/UIViewController.swift', 'Source/Internal/Trackers/AVPlayerTracker.swift', 'Source/Internal/Features/DeepLink.swift'
s.frameworks = 'Foundation', 'UIKit'
s.ios.frameworks = 'AVFoundation', 'AVKit', 'CoreTelephony'
s.watchos.frameworks = 'WatchKit'
s.ios.dependency 'ReachabilitySwift', '~> 4.3.1'
s.ios.dependency 'CryptoSwift', '~> 1.0.0'
s.watchos.dependency 'CryptoSwift', '~> 1.0.0'
s.tvos.dependency 'ReachabilitySwift', '~> 4.3.1'
s.tvos.dependency 'CryptoSwift', '~> 1.0.0'
end