-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathBugSplat.podspec
More file actions
21 lines (19 loc) · 850 Bytes
/
BugSplat.podspec
File metadata and controls
21 lines (19 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'BugSplat'
s.version = '3.0.0'
s.summary = 'BugSplat crash reporting for iOS, macOS, and tvOS'
s.description = <<-DESC
BugSplat is a crash reporting SDK for Apple platforms (iOS, macOS, tvOS).
It provides automatic crash reporting with PLCrashReporter statically linked.
DESC
s.homepage = 'https://github.com/BugSplat-Git/bugsplat-apple'
s.license = { type: 'MIT' }
s.author = { 'BugSplat' => 'support@bugsplat.com' }
s.source = { http: 'https://github.com/BugSplat-Git/bugsplat-apple/releases/download/v3.0.0/BugSplat.xcframework.zip' }
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '11.5'
s.tvos.deployment_target = '13.0'
s.static_framework = true
s.vendored_frameworks = 'BugSplat.xcframework'
s.libraries = 'z', 'c++'
end