-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCrashReporterAC.podspec
executable file
·21 lines (21 loc) · 1.55 KB
/
CrashReporterAC.podspec
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 = "CrashReporterAC"
s.version = "0.3.0"
s.summary = "Introduces the missing Crash Dialog for Microsofts AppCenter."
s.description = <<-DESC
A bug report contains device logs, stack traces, and other diagnostic information to help you find and fix bugs in your app. It should also include user feedback that helps you to reproduce the issue. Unfortunately that's not part of Microsoft's AppCenter implementation for macOS. However there are APIs that allow you to send text attachments with each crash. CrashReporterAC asks the user for feedback and submits it with the crash details to AppCenter.
DESC
s.homepage = "https://github.com/Iomegan/CrashReporterAC"
s.screenshots = 'https://raw.githubusercontent.com/Iomegan/CrashReporterAC/master/Screenshot.png', 'https://raw.githubusercontent.com/Iomegan/CrashReporterAC/master/Screenshot2.png'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Daniel Witt" => "[email protected]" }
s.social_media_url = 'https://twitter.com/witt_software'
s.platform = :osx, "10.10"
s.osx.deployment_target = "10.10"
s.source = { :git => "https://github.com/Iomegan/CrashReporterAC.git", :tag => "0.3.0" }
s.source_files = 'Sources/*.{swift}'
s.resource_bundle = { "CrashReporterACResources" => ["Sources/*.lproj/*.strings", "Sources/*.lproj/*.xib"] }
s.dependency 'AppCenter/Crashes'
s.requires_arc = true
s.static_framework = true
end