-
Notifications
You must be signed in to change notification settings - Fork 17
/
RollbarReport.podspec
37 lines (32 loc) · 1.42 KB
/
RollbarReport.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
Pod::Spec.new do |s|
s.name = "RollbarReport"
s.version = "3.3.3"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Find, fix, and resolve errors with Rollbar.
Easily send error data using Rollbar API.
Analyze, de-dupe, send alerts, and prepare the data for further analysis.
Search, sort, and prioritize via the Rollbar dashboard.
DESC
s.homepage = "https://rollbar.com"
s.resource = "rollbar-logo.png"
s.license = { :type => "MIT", :file => "LICENSE" }
s.authors = { "Rollbar" => "support@rollbar.com" }
s.source = { :git => "https://github.com/rollbar/rollbar-apple.git",
:tag => s.version.to_s }
s.documentation_url = "https://docs.rollbar.com/docs/apple"
s.social_media_url = "https://twitter.com/rollbar"
s.osx.deployment_target = "10.13"
s.ios.deployment_target = "11.0"
s.tvos.deployment_target = "11.0"
s.watchos.deployment_target = "4.0"
s.module_name = "RollbarReport"
s.source_files = "RollbarNotifier/Sources/RollbarReport/**/*.swift"
s.framework = "Foundation"
s.dependency "RollbarCrash", "~> #{s.version}"
s.swift_versions = "5.5"
s.requires_arc = true
s.xcconfig = {
"USE_HEADERMAP" => "NO"
}
end