ZeplinPlus is an Android app can view Zeplin screens by using the Zeplin API
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 tab in your profile page.
Step 2. Create a OauthConstant
object put in hearsilent.zeplin.libs
, and put 3 const static variable in this object.
Like this:
package hearsilent.zeplin.libs
object OauthConstant {
const val CLIENT_ID = "Identifier of your Zeplin app" // Please change this value
const val CLIENT_SECRET = "Client secret of your Zeplin app" // Please change this value
const val REDIRECT_URI = "URL of your application where users will be redirected to after authorization" // Please change this value
}
Step 3. Build app with ❤️ & Enjoy it!
- Auto DayNight switch
- Support Zeplin app link (zpl)
- Auto refresh oauth token
- Fetch projects
- Fetch single project
- Fetch project's screens
- Fetch single screen
- Search project
- Project empty state
- Show members
- Show notes
- Search screen
- Screen empty state
- Sort screens by sections
- Sort screens by last updated
- Switch screen version
- Add note
- Share project/screen
- Download screen
- Logout
- Show component layers
- View notifications (Wait for API)
Android LOLLIPOP 5.0+
This project was inspired by Zeplin.
MIT License
Copyright (c) 2020 HearSilent
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.