{"id":13604594,"url":"https://github.com/mattprecious/telescope","last_synced_at":"2025-05-14T14:08:49.027Z","repository":{"id":16565543,"uuid":"19319419","full_name":"mattprecious/telescope","owner":"mattprecious","description":"A simple tool to allow easy bug report capturing within your app.","archived":false,"fork":false,"pushed_at":"2025-05-10T02:20:54.000Z","size":3215,"stargazers_count":1171,"open_issues_count":13,"forks_count":116,"subscribers_count":36,"default_branch":"main","last_synced_at":"2025-05-10T03:27:13.801Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mattprecious.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2014-04-30T16:08:35.000Z","updated_at":"2025-05-10T02:20:57.000Z","dependencies_parsed_at":"2024-01-03T21:27:29.481Z","dependency_job_id":"740b073b-bc93-4fb6-aba7-faafad3cd317","html_url":"https://github.com/mattprecious/telescope","commit_stats":{"total_commits":176,"total_committers":15,"mean_commits":"11.733333333333333","dds":0.4204545454545454,"last_synced_commit":"919d5d8813a59b0a583e0b1735ba2c60cc1b7ccb"},"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattprecious%2Ftelescope","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattprecious%2Ftelescope/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattprecious%2Ftelescope/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattprecious%2Ftelescope/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mattprecious","download_url":"https://codeload.github.com/mattprecious/telescope/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254160026,"owners_count":22024567,"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-08-01T19:00:48.849Z","updated_at":"2025-05-14T14:08:49.004Z","avatar_url":"https://github.com/mattprecious.png","language":"Java","funding_links":[],"categories":["Java"],"sub_categories":[],"readme":"Telescope\n======\n\nA simple tool to allow easy bug report capturing within your app.\n\n![](images/sample.gif)\n\n\n\nUsage\n-----\n\nPlace a `TelescopeLayout` at the root of your hierarchy.\n\nAdd a callback to the view group with `setLens(Lens)`. Telescope provides two default\nimplementations:\n\n* `EmailLens`: Compose an email with the provided addresses and subject (optional).\n* `EmailDeviceInfoLens`: Enhances `EmailLens` by pre-populating the email body with app and device\n  info\n\nScreenshots will be stored on the external storage in your app's private directory. To have\nTelescope clean up the screenshots folder, call `TelescopeLayout.cleanUp(Context)`. Ideally, this\nwould be called in the `onDestroy()` method of your `Activity` or `Fragment`.\n\nIf you are using the Gradle-based build system, you can wrap this view group around your activity\nlayouts only in the debug builds.\n\nSee the [u2020 project][2] for a more advanced example.\n\n\n\nPermissions\n-----------\n\nPre-KitKat, `WRITE_EXTERNAL_STORAGE` is required for saving screenshots. Screenshots can be disabled\nusing the configuration options below.\n\n\n\nConfiguration\n-------------\n\nThe view group can be configured as follows:\n\n* Set the number of fingers to trigger with `app:telescope_pointerCount` / `setPointerCount(int)`\n* Set the progress color with `app:telescope_progressColor` / `setProgressColor(int)`\n* Change the screenshot method with `app:telescope_screenshotMode` /\n`setScreenshotMode(ScreenshotMode)`\n* Screenshot children only with `app:telescope_screenshotChildrenOnly` /\n`setScreenshotChildrenOnly(boolean)`\n* Set the screenshot target with`setScreenshotTarget(View)`\n* Disable vibration with `app:telescope_vibrate` / `setVibrate(boolean)`\n\n\n\nDownload\n--------\n\nGradle:\n```groovy\ncompile 'com.mattprecious.telescope:telescope:2.4.0'\n```\nor Maven:\n```xml\n\u003cdependency\u003e\n  \u003cgroupId\u003ecom.mattprecious.telescope\u003c/groupId\u003e\n  \u003cartifactId\u003etelescope\u003c/artifactId\u003e\n  \u003cversion\u003e2.4.0\u003c/version\u003e\n  \u003ctype\u003eapklib\u003c/type\u003e\n\u003c/dependency\u003e\n```\n\n\nLicense\n--------\n\n    Copyright 2014 Matthew Precious\n\n    Licensed under the Apache License, Version 2.0 (the \"License\");\n    you may not use this file except in compliance with the License.\n    You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n\n\n [1]: http://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy\u0026g=com.mattprecious.telescope\u0026a=telescope\u0026v=LATEST\n [2]: https://github.com/jakewharton/u2020\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmattprecious%2Ftelescope","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmattprecious%2Ftelescope","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmattprecious%2Ftelescope/lists"}