-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathAutomattic-Tracks-iOS.podspec
41 lines (32 loc) · 1.57 KB
/
Automattic-Tracks-iOS.podspec
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
# frozen_string_literal: true
Pod::Spec.new do |s|
s.name = 'Automattic-Tracks-iOS'
s.version = '3.5.1'
s.summary = 'Simple way to track events in an iOS app with Automattic Tracks internal service'
s.description = <<-DESC
This framework provides an abstract layer on our Automattic Tracks internal analytics service,
and allows to easily send events to Tracks to monitor our app's activity and flows.
DESC
s.homepage = 'https://github.com/Automattic/Automattic-Tracks-iOS'
s.license = { type: 'GPLv2', file: 'LICENSE' }
s.author = { 'Automattic' => '[email protected]' }
s.social_media_url = 'https://twitter.com/automattic'
s.ios.deployment_target = '12.0'
s.osx.deployment_target = '10.14'
s.swift_version = '5.0'
s.source = { git: 'https://github.com/Automattic/Automattic-Tracks-iOS.git', tag: s.version.to_s }
s.ios.source_files = 'Sources/**/*.{h,m,swift}'
s.ios.exclude_files = 'Sources/Automattic_Tracks_OSX.h'
s.osx.source_files = 'Sources/**/*.{h,m,swift}'
s.osx.exclude_files = ['Sources/Automattic-Tracks-iOS.h', 'Automattic-Tracks-iOS/ABTesting/*']
s.resource_bundle = { 'DataModel' => ['Sources/**/*.xcdatamodeld'] }
s.framework = 'CoreData'
s.ios.framework = 'UIKit'
s.ios.framework = 'CoreTelephony'
s.osx.framework = 'AppKit'
s.header_dir = 'AutomatticTracks'
s.module_name = 'AutomatticTracks'
s.ios.dependency 'UIDeviceIdentifier', '~> 2.0'
s.dependency 'Sentry', '~> 8.39'
s.dependency 'Sodium', '>= 0.9.1'
end