{"id":17650729,"url":"https://github.com/eaceto/bugreporter","last_synced_at":"2025-07-15T04:37:56.509Z","repository":{"id":56904035,"uuid":"89606158","full_name":"eaceto/BugReporter","owner":"eaceto","description":null,"archived":false,"fork":false,"pushed_at":"2017-04-28T18:48:18.000Z","size":124,"stargazers_count":1,"open_issues_count":2,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-12T23:45:27.484Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/eaceto.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-04-27T14:24:24.000Z","updated_at":"2017-04-28T02:53:06.000Z","dependencies_parsed_at":"2022-08-20T18:40:07.952Z","dependency_job_id":null,"html_url":"https://github.com/eaceto/BugReporter","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/eaceto/BugReporter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eaceto%2FBugReporter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eaceto%2FBugReporter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eaceto%2FBugReporter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eaceto%2FBugReporter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eaceto","download_url":"https://codeload.github.com/eaceto/BugReporter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eaceto%2FBugReporter/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265402833,"owners_count":23759237,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-23T11:39:20.372Z","updated_at":"2025-07-15T04:37:56.489Z","avatar_url":"https://github.com/eaceto.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BugReporter\n\n[![CI Status](http://img.shields.io/travis/eaceto/BugReporter.svg?style=flat)](https://travis-ci.org/eaceto/BugReporter)\n[![Version](https://img.shields.io/cocoapods/v/BugReporter.svg?style=flat)](http://cocoapods.org/pods/BugReporter)\n[![License](https://img.shields.io/cocoapods/l/BugReporter.svg?style=flat)](http://cocoapods.org/pods/BugReporter)\n[![Platform](https://img.shields.io/cocoapods/p/BugReporter.svg?style=flat)](http://cocoapods.org/pods/BugReporter)\n[![Twitter](https://img.shields.io/badge/twitter-@eaceto-blue.svg?style=flat)](http://twitter.com/eaceto)\n\nBugReporter is a simple and elegant bug reporting tool for you apps.\n\n- [Features](#features)\n- [How to setup](#how-to-setup)\n- [What BugReporter is not](#what-bugreporter-is-not)\n- [Requirements](#requirements)\n- [Communication](#communication)\n- [Installation](#installation)\n- [Usage](#usage)\n- [Author](#author)\n- [License](#license)\n\n## Features\n\n- [x] Detect 'take screenshot' event and fire a report\n- [x] Create a report with information about the device and the application\n- [x] Send report using email as channel\n- [x] Send report using UIActivityViewController as channel\n- [x] User can select how to send reports\n- [x] User can dismiss sending a report\n- [x] Load configuration from a property file (plist)\n- [x] Notify reporting life cycle\n- [ ] Detect shake gesture and fire a report\n- [ ] Attach multiple images to a report\n- [ ] Save report into file system if cannot be sent\n- [ ] Send report to a backend\n\n## What BugReporter is not\n\n- BugReporter **is not** a crash reporting tool (like Crashlytics).\n- BugReporter **will not** take screenshots of your app unless the user triggers a report event.\n\n## How to setup\n\nInclude a file named *BugReporterSettings.plist* inside your project. The content of this property file should have at least one property called **applicationId** with a non-empty string value. This property will be used in future versions when integrating with a backend.\n\n### reportsEMail\nThis property lets you specify a list of emails, used as default addresses when sending a report through email.\n\n### Example file\n\n    \u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\n    \u003c!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\"\u003e\n    \u003cplist version=\"1.0\"\u003e\n    \u003cdict\u003e\n    \t\u003ckey\u003eapplicationId\u003c/key\u003e\n    \t\u003cstring\u003eYOUR-APP-ID\u003c/string\u003e\n    \t\u003ckey\u003ereportEMails\u003c/key\u003e\n    \t\u003carray\u003e\n                \u003cstring\u003edeveloper_1_email@your-company.com\u003c/string\u003e\n                \u003cstring\u003edeveloper_2_email@your-company.com\u003c/string\u003e\n                \u003cstring\u003eqa_guy@your-company.com\u003c/string\u003e        \n    \t\u003c/array\u003e\n    \u003c/dict\u003e\n    \u003c/plist\u003e\n\n\n## Requirements\n\n- iOS 8.0+\n- Xcode 8.1+\n- Swift 3.0+\n\n## Communication\n\n- If you **need help**, write me an e-mail\n- If you **found a bug**, open an issue.\n- If you **have a feature request**, open an issue.\n- If you **want to contribute**, submit a pull request.\n\n## Installation\n\nBugReporter is available through [CocoaPods](http://cocoapods.org). To install\nit, simply add the following line to your Podfile:\n\n```ruby\npod \"BugReporter\"\n```\n\n## Usage\n\nTo run the example project, clone the repo, and run `pod install` from the Example directory first.\n\n\n## Author\n\nEzequiel Aceto, ezequiel.aceto (at) gmail.com\n\n## License\n\nBugReporter is available under the MIT license. See the LICENSE file for more info.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feaceto%2Fbugreporter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feaceto%2Fbugreporter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feaceto%2Fbugreporter/lists"}