To run the example project, clone the repo, and run pod install
from the Example directory first.
IssueReporter is available through CocoaPods. To install it, add the following line to your Podfile:
pod "IssueReporter"
You may run into issues with swift versions. Use the following code to apply the correct Swift version :
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if target.name == "IssueReporter"
config.build_settings['SWIFT_VERSION'] = "4.2"
end
end
end
end
Hakon Hanesand, [email protected] Nikolai Heum, [email protected]
IssueReporter is available under the MIT license. See the LICENSE file for more info.