-
Notifications
You must be signed in to change notification settings - Fork 17
/
RollbarNotifier.podspec
42 lines (37 loc) · 1.84 KB
/
RollbarNotifier.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
Pod::Spec.new do |s|
s.name = "RollbarNotifier"
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" => "[email protected]" }
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 = "RollbarNotifier"
s.source_files = "#{s.name}/Sources/#{s.name}/**/*.{h,m}"
s.public_header_files = "#{s.name}/Sources/#{s.name}/include/*.h"
s.resource_bundles = { "RollbarNotifier" => "RollbarNotifier/Sources/RollbarNotifier/PrivacyInfo.xcprivacy" }
s.module_map = "#{s.name}/Sources/#{s.name}/include/module.modulemap"
s.framework = "Foundation"
s.dependency "RollbarCommon", "~> #{s.version}"
s.dependency "RollbarCrash", "~> #{s.version}"
s.dependency "RollbarReport", "~> #{s.version}"
s.swift_versions = "5.5"
s.requires_arc = true
s.xcconfig = {
"HEADER_SEARCH_PATHS" => "$(PODS_ROOT)/RollbarCrash/RollbarNotifier/Sources/RollbarCrash/include"
}
end