forked from microsoft/PLCrashReporter-Fork
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPLCrashReporter.podspec
More file actions
23 lines (19 loc) · 1.33 KB
/
PLCrashReporter.podspec
File metadata and controls
23 lines (19 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |spec|
spec.cocoapods_version = '>= 1.10'
spec.name = 'PLCrashReporter'
spec.version = '1.12.0'
spec.summary = 'Reliable, open-source crash reporting for iOS, macOS and tvOS.'
spec.description = 'PLCrashReporter is a reliable open source library that provides an in-process live crash reporting framework for use on iOS, macOS and tvOS. The library detects crashes and generates reports to help your investigation and troubleshooting with the information of application, system, process, thread, etc. as well as stack traces.'
spec.homepage = 'https://github.com/microsoft/plcrashreporter'
spec.license = { :type => 'MIT', :file => 'LICENSE.txt' }
spec.authors = { 'Microsoft' => 'appcentersdk@microsoft.com' }
spec.source = { :http => "https://github.com/microsoft/plcrashreporter/releases/download/#{spec.version}/PLCrashReporter-Static-#{spec.version}.xcframework.zip",
:flatten => true }
spec.resource_bundle = { 'PLCrashReporter' => 'CrashReporter.xcframework/PrivacyInfo.xcprivacy' }
spec.ios.deployment_target = '12.0'
spec.osx.deployment_target = '11.5'
spec.tvos.deployment_target = '12.0'
spec.vendored_frameworks = "CrashReporter.xcframework"
spec.libraries = 'c++'
spec.pod_target_xcconfig = { 'OTHER_LDFLAGS' => '-lc++' }
end