-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAnalyticsSystem.podspec
More file actions
45 lines (34 loc) · 1.21 KB
/
AnalyticsSystem.podspec
File metadata and controls
45 lines (34 loc) · 1.21 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Pod::Spec.new do |s|
s.name = 'AnalyticsSystem'
s.version = '1.0.0'
s.summary = 'AnalyticsSystem'
s.description = <<-DESC
Simplify your app analytics with multiple built-in providers.
DESC
s.homepage = 'https://github.com/AndrewKochulab/AnalyticsSystem'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = 'Andrew Kochulab'
s.source = {
:git => 'https://github.com/AndrewKochulab/AnalyticsSystem.git',
:tag => s.version.to_s
}
s.social_media_url = 'https://github.com/AndrewKochulab'
s.ios.deployment_target = '10.0'
s.cocoapods_version = '>= 1.4.0'
s.swift_version = '5.2'
s.default_subspec = 'Core'
s.static_framework = true
s.subspec 'Core' do |ss|
ss.source_files = 'Sources/AnalyticsSystem/**/*.{swift, h}'
end
s.subspec 'Bugsnag' do |ss|
ss.dependency 'AnalyticsSystem/Core'
ss.dependency 'Bugsnag'
ss.source_files = 'Sources/BugsnagProvider/BugsnagTracker.swift'
end
s.subspec 'Facebook' do |ss|
ss.dependency 'AnalyticsSystem/Core'
ss.dependency 'FBSDKCoreKit'
ss.source_files = 'Sources/FacebookProvider/FacebookTracker.swift'
end
end