{"id":13343868,"url":"https://github.com/hearsilent/ZeplinPlus-Android","last_synced_at":"2025-03-12T06:30:37.006Z","repository":{"id":56530865,"uuid":"258578988","full_name":"hearsilent/ZeplinPlus-Android","owner":"hearsilent","description":"ZeplinPlus is an Android app can view Zeplin screens","archived":false,"fork":false,"pushed_at":"2020-11-18T09:13:28.000Z","size":1628,"stargazers_count":29,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-10-24T16:49:42.365Z","etag":null,"topics":["android","app","kotlin","mobile","zeplin"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","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/hearsilent.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":null,"custom":null}},"created_at":"2020-04-24T17:30:32.000Z","updated_at":"2023-12-29T07:47:55.000Z","dependencies_parsed_at":"2022-08-15T20:30:43.883Z","dependency_job_id":null,"html_url":"https://github.com/hearsilent/ZeplinPlus-Android","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hearsilent%2FZeplinPlus-Android","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hearsilent%2FZeplinPlus-Android/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hearsilent%2FZeplinPlus-Android/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hearsilent%2FZeplinPlus-Android/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hearsilent","download_url":"https://codeload.github.com/hearsilent/ZeplinPlus-Android/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243171392,"owners_count":20247876,"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":["android","app","kotlin","mobile","zeplin"],"created_at":"2024-07-29T19:32:04.924Z","updated_at":"2025-03-12T06:30:36.592Z","avatar_url":"https://github.com/hearsilent.png","language":"Kotlin","readme":"# ZeplinPlus Android\n[![license](https://img.shields.io/github/license/hearsilent/ZeplinPlus-Android.svg)](https://github.com/hearsilent/ZeplinPlus-Android/blob/master/LICENSE)\n\nZeplinPlus is an Android app can view Zeplin screens by using the [Zeplin API](https://docs.zeplin.dev/reference)\n\n## Screenshot\n\u003cimg src=\"https://github.com/hearsilent/ZeplinPlus-Android/raw/master/screenshots/device-2020-04-25-205331.png\" height=500\u003e \u003cimg src=\"https://github.com/hearsilent/ZeplinPlus-Android/raw/master/screenshots/device-2020-04-25-205159.png\" height=500\u003e  \n\u003cimg src=\"https://github.com/hearsilent/ZeplinPlus-Android/raw/master/screenshots/device-2020-04-25-205850.png\" height=500\u003e \u003cimg src=\"https://github.com/hearsilent/ZeplinPlus-Android/raw/master/screenshots/device-2020-04-25-210031.png\" height=500\u003e\n\n## Setup\n   \n**Step 1.** To use the Zeplin API for creating a custom integration, you either need to create a personal access token or a Zeplin app. You can create them from the web app under [Developer](https://app.zeplin.io/profile/developer) tab in your profile page.\n\n**Step 2.** Create a `OauthConstant` object put in [`hearsilent.zeplin.libs`](https://github.com/hearsilent/ZeplinPlus-Android/tree/master/app/src/main/java/hearsilent/zeplin/libs), and put 3 const static variable in this object.  \nLike this:\n```kotlin\npackage hearsilent.zeplin.libs\n\nobject OauthConstant {\n\n    const val CLIENT_ID = \"Identifier of your Zeplin app\" // Please change this value\n    const val CLIENT_SECRET = \"Client secret of your Zeplin app\" // Please change this value\n    const val REDIRECT_URI = \"URL of your application where users will be redirected to after authorization\" // Please change this value\n\n}\n```\n\n**Step 3.** Build app with ❤️ \u0026 Enjoy it!\n\n## Features\n- Auto DayNight switch\n- Support Zeplin app link (zpl)\n- Auto [refresh oauth token](https://docs.zeplin.dev/reference#oauthposttoken)\n- Fetch [projects](https://docs.zeplin.dev/reference#getprojects)\n- Fetch [single project](https://docs.zeplin.dev/reference#getproject)\n- Fetch [project's screens](https://docs.zeplin.dev/reference#getprojectscreens)\n- Fetch [single screen](https://docs.zeplin.dev/reference#getscreen)\n\n## TODO\n- Search project\n- Project empty state\n- [Show members](https://docs.zeplin.dev/reference#getprojectmembers)\n- [Show notes](https://docs.zeplin.dev/reference#getscreennotes)\n- Search screen\n- Screen empty state\n- Sort screens by [sections](https://docs.zeplin.dev/reference#getscreensections)\n- Sort screens by last updated\n- Switch [screen version](https://docs.zeplin.dev/reference#getscreenversions)\n- [Add note](https://docs.zeplin.dev/reference#postscreennote)\n- Share project/screen\n- Download screen\n- Logout\n- Show component [layers](https://docs.zeplin.dev/reference#layer)\n- View notifications (*Wait for API*)\n   \n## Compatibility\n\nAndroid LOLLIPOP 5.0+\n\n## Credits\n\nThis project was inspired by [Zeplin](https://zeplin.io/).\n\n## License\n\n    MIT License\n\n    Copyright (c) 2020 HearSilent\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhearsilent%2FZeplinPlus-Android","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhearsilent%2FZeplinPlus-Android","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhearsilent%2FZeplinPlus-Android/lists"}