This repository has been archived by the owner on Jun 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Swiftlytics.podspec
79 lines (64 loc) · 2.84 KB
/
Swiftlytics.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#
# Be sure to run `pod lib lint Swiftlytics.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 https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'Swiftlytics'
s.version = '0.7.0'
s.summary = 'Swiftlytics is a lightweight analytics abstraction for many arbitrary analytics providers'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
Swiftlytics is a simple protocol-oriented analytics abstraction that affords easy integration and disintegration with various analytics providers.
DESC
s.homepage = 'https://github.com/almost-free/Swiftlytics'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Jon Willis' => '[email protected]' }
s.source = { :git => 'https://github.com/almost-free/Swiftlytics.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/almostfreetech'
s.ios.deployment_target = '9.0'
s.static_framework = true
s.swift_version = '5.3'
s.subspec 'Core' do |core|
core.source_files = 'Swiftlytics/Core/**/*'
end
s.subspec 'Firebase' do |firebase|
firebase.source_files = 'Swiftlytics/Firebase/**/*'
firebase.dependency 'Firebase/Core'
firebase.dependency 'Firebase/Analytics'
firebase.dependency 'Swiftlytics/Core'
end
s.subspec 'FirebaseCrashlytics' do |firebase|
firebase.source_files = 'Swiftlytics/FirebaseCrashlytics/**/*'
firebase.dependency 'Firebase/Core'
firebase.dependency 'Firebase/Crashlytics'
firebase.dependency 'Swiftlytics/Core'
end
s.subspec 'Facebook' do |facebook|
facebook.source_files = 'Swiftlytics/Facebook/**/*'
facebook.dependency 'FacebookCore'
facebook.dependency 'Swiftlytics/Core'
end
s.subspec 'AppCenter' do |appsflyer|
appsflyer.source_files = 'Swiftlytics/AppCenter/**/*'
appsflyer.dependency 'AppCenter'
appsflyer.dependency 'Swiftlytics/Core'
end
s.subspec 'AppsFlyer' do |appsflyer|
appsflyer.source_files = 'Swiftlytics/AppsFlyer/**/*'
appsflyer.dependency 'AppsFlyerFramework'
appsflyer.dependency 'Swiftlytics/Core'
end
s.subspec 'Mixpanel' do |appsflyer|
appsflyer.source_files = 'Swiftlytics/Mixpanel/**/*'
appsflyer.dependency 'Mixpanel'
appsflyer.dependency 'Swiftlytics/Core'
end
end