{"id":13428791,"url":"https://github.com/androidstarters/kotlin-android-starter","last_synced_at":"2025-04-05T01:05:48.812Z","repository":{"id":75230845,"uuid":"64384593","full_name":"androidstarters/kotlin-android-starter","owner":"androidstarters","description":"[Kotlin Android] Kotlin Android starter based MVP/Dagger2/RxJava2/Robolectric/Espresso/Mockito. It provides a generator to fast create a Kotlin Android project.","archived":false,"fork":false,"pushed_at":"2019-08-14T07:45:49.000Z","size":2003,"stargazers_count":601,"open_issues_count":8,"forks_count":94,"subscribers_count":22,"default_branch":"develop","last_synced_at":"2024-10-29T15:01:32.142Z","etag":null,"topics":["android","android-mvp-kotlin","checkstyle","espresso","findbugs","kotlin","mockito","mvp","pmd","robolectric","rxjava"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/androidstarters.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2016-07-28T10:00:42.000Z","updated_at":"2024-10-03T18:58:15.000Z","dependencies_parsed_at":"2023-03-01T23:30:20.493Z","dependency_job_id":null,"html_url":"https://github.com/androidstarters/kotlin-android-starter","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/androidstarters%2Fkotlin-android-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/androidstarters%2Fkotlin-android-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/androidstarters%2Fkotlin-android-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/androidstarters%2Fkotlin-android-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/androidstarters","download_url":"https://codeload.github.com/androidstarters/kotlin-android-starter/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247271528,"owners_count":20911587,"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","android-mvp-kotlin","checkstyle","espresso","findbugs","kotlin","mockito","mvp","pmd","robolectric","rxjava"],"created_at":"2024-07-31T01:01:05.215Z","updated_at":"2025-04-05T01:05:48.786Z","avatar_url":"https://github.com/androidstarters.png","language":"Kotlin","funding_links":[],"categories":["Libraries","Kotlin","Goals:","开源库"],"sub_categories":["框架"],"readme":"# Android Kotlin Mvp Starter [![Build Status](https://travis-ci.org/androidstarters/kotlin-android-starter.svg?branch=master)](https://travis-ci.org/androidstarters/kotlin-android-starter)\n\n[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-Android%20MVP%20Starter-blue.svg?style=flat)](https://android-arsenal.com/details/3/5232)\n[![Join the chat at https://gitter.im/android-mvp-starter/Lobby](https://badges.gitter.im/android-mvp-starter/Lobby.svg)](https://gitter.im/android-mvp-starter/Lobby?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge)\n\nAn MVP Boilerplate to save me having to create the same project over from scratch every time! :)\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"http://g.recordit.co/L5selg7aIv.gif\" width=\"250\"\u003e\n  \u003cimg src=\"http://g.recordit.co/xt4o5wTySc.gif\"\u003e\n\u003c/p\u003e\n\n## This project uses:\n- [RxJava2](https://github.com/ReactiveX/RxJava) and [RxAndroid](https://github.com/ReactiveX/RxAndroid)\n- [Retrofit](http://square.github.io/retrofit/) / [OkHttp](http://square.github.io/okhttp/)\n- [Moshi](https://github.com/square/moshi)\n- [Dagger 2](http://google.github.io/dagger/)\n- [Butterknife](https://github.com/JakeWharton/butterknife)\n- [Google Play Services](https://developers.google.com/android/guides/overview)\n- [Timber](https://github.com/JakeWharton/timber)\n- [Glide 3](https://github.com/bumptech/glide)\n- [Stetho](http://facebook.github.io/stetho/)\n- [Espresso](https://google.github.io/android-testing-support-library/) for UI tests\n- [Robolectric](http://robolectric.org/) for framework specific unit tests\n- [Mockito](http://mockito.org/)\n\n## Create new project using yeoman [generator-kotlin-android](https://github.com/androidstarters/generator-kotlin-android)\n```bash\nnpm install -g yo\nnpm install -g generator-kotlin-android\nmkdir NewApp \u0026\u0026 cd $_\nyo kotlin-android\n```\n\n## Building\n\nTo build, install and run a debug version, run this from the root of the project:\n```sh\n./gradlew app:assembleDebug\n```\n    \n## Testing\n\nTo run **unit** tests on your machine:\n\n```sh\n./gradlew test\n```\n\nTo run **instrumentation** tests on connected devices:\n\n```sh\n./gradlew connectedAndroidTest\n```\n\n## Code Analysis tools\n\nThe following code analysis tools are set up on this project:\n\n* [PMD](https://pmd.github.io/)\n\n```sh\n./gradlew pmd\n```\n\n* [Findbugs](http://findbugs.sourceforge.net/)\n\n```sh\n./gradlew findbugs\n```\n\n* [Checkstyle](http://checkstyle.sourceforge.net/)\n\n```sh\n./gradlew checkstyle\n```\n\n## The check task\n\nTo ensure that your code is valid and stable use check:\n\n```sh\n./gradlew check\n```\n\n## License\n```\nMIT License\n\nCopyright (c) 2017 Ravindra Kumar\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandroidstarters%2Fkotlin-android-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandroidstarters%2Fkotlin-android-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandroidstarters%2Fkotlin-android-starter/lists"}