IssueReporter
示例
要运行示例项目,请首先克隆仓库,然后从Example目录运行pod install
。
安装
IssueReporter可通过CocoaPods获取。要安装它,请将以下行添加到您的Podfile中
pod "IssueReporter"
您可能会遇到与swift版本相关的问题。使用以下代码应用正确的Swift版本:
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采用MIT许可证。有关更多信息,请参阅LICENSE文件。