-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCrashlyticsRecorder.podspec
31 lines (24 loc) · 1.03 KB
/
CrashlyticsRecorder.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
Pod::Spec.new do |s|
s.name = 'CrashlyticsRecorder'
s.version = '2.4.0'
s.swift_version = '4.2'
s.summary = 'A wrapper for the Crashlytics framework allowing it to be used as a transitive dependency via dependency injection.'
s.homepage = 'https://github.com/AnthonyMDev/CrashlyticsRecorder'
s.license = 'MIT'
s.author = { "Anthony Miller" => "[email protected]" }
s.source = { :git => "https://github.com/AnthonyMDev/CrashlyticsRecorder.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/AnthonyMDev'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = '9.0'
s.requires_arc = true
s.subspec 'Crashlytics' do |cs|
cs.source_files = 'Pod/Classes/CrashlyticsRecorder.swift'
end
s.subspec 'Answers' do |as|
as.source_files = 'Pod/Classes/AnswersRecorder.swift'
end
s.subspec 'FirebaseAnalytics' do |fas|
fas.source_files = 'Pod/Classes/AnalyticsRecorder.swift'
end
end