-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEAnalytics.podspec
36 lines (27 loc) · 1.23 KB
/
EAnalytics.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
#
# Be sure to run `pod lib lint EAnalytics.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "EAnalytics"
s.version = "1.5.0"
s.summary = "iOS tracking library for Eulerian Technologies Analytics."
# s.description = <<-DESC
# DESC
s.homepage = "https://github.com/EulerianTechnologies/eanalytics-ios"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = { :type => 'MIT' }
s.author = { "Eulerian Technologies" => "[email protected]" }
s.source = { :git => "https://github.com/EulerianTechnologies/eanalytics-ios.git", :tag => s.version }
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = { 'EAnalaytics' => ['Pod/Classes/*.xcprivacy'] }
# Exclude this file that is required for SPM
s.exclude_files = 'Pod/Classes/include/**/*'
s.public_header_files = 'Pod/Classes/**/*.h'
end