{"id":18995840,"url":"https://github.com/mars885/android-commons","last_synced_at":"2025-04-22T13:49:01.091Z","repository":{"id":53043927,"uuid":"285931745","full_name":"mars885/android-commons","owner":"mars885","description":"A suite of Android libraries that contain common functionality I use in projects.","archived":false,"fork":false,"pushed_at":"2025-02-20T20:05:22.000Z","size":376,"stargazers_count":10,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-29T15:41:49.520Z","etag":null,"topics":["android","android-commons","android-ktx","android-library"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","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/mars885.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":"2020-08-07T22:31:25.000Z","updated_at":"2025-02-20T20:05:33.000Z","dependencies_parsed_at":"2022-09-05T07:10:59.552Z","dependency_job_id":null,"html_url":"https://github.com/mars885/android-commons","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/mars885%2Fandroid-commons","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mars885%2Fandroid-commons/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mars885%2Fandroid-commons/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mars885%2Fandroid-commons/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mars885","download_url":"https://codeload.github.com/mars885/android-commons/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249268561,"owners_count":21240945,"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-commons","android-ktx","android-library"],"created_at":"2024-11-08T17:33:02.890Z","updated_at":"2025-04-16T19:32:31.108Z","avatar_url":"https://github.com/mars885.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Android Commons\nA suite of Android libraries that contain common functionality I use in projects.\n\n![](https://img.shields.io/badge/API-21%2B-orange.svg?style=flat)\n[![Platform](https://img.shields.io/badge/platform-Android-green.svg)](http://developer.android.com/index.html)\n[![Build](https://github.com/mars885/android-commons/workflows/Build/badge.svg?branch=master)](https://github.com/mars885/android-commons/actions)\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n\n## Contents\n* [commons-core](https://github.com/mars885/android-commons/tree/master/commons/src/main/java/com/paulrybitskyi/commons)\n* [commons-ktx](https://github.com/mars885/android-commons/tree/master/commons-ktx/src/main/java/com/paulrybitskyi/commons/ktx)\n* [commons-window-anims](https://github.com/mars885/android-commons/tree/master/commons-window-anims/src/main/java/com/paulrybitskyi/commons/window/anims)\n* [commons-recyclerview](https://github.com/mars885/android-commons/tree/master/commons-recyclerview/src/main/java/com/paulrybitskyi/commons/recyclerview)\n* [commons-material](https://github.com/mars885/android-commons/tree/master/commons-material/src/main/java/com/paulrybitskyi/commons/material)\n* [commons-navigation](https://github.com/mars885/android-commons/tree/master/commons-navigation/src/main/java/com/paulrybitskyi/commons/navigation)\n* [commons-device-info](https://github.com/mars885/android-commons/tree/master/commons-device-info/src/main/java/com/paulrybitskyi/commons/device/info)\n* [commons-network](https://github.com/mars885/android-commons/tree/master/commons-network/src/main/java/com/paulrybitskyi/commons/network)\n* [commons-widgets](https://github.com/mars885/android-commons/tree/master/commons-widgets/src/main/java/com/paulrybitskyi/commons/widgets)\n* [commons-listeners](https://github.com/mars885/android-commons/tree/master/commons-listeners/src/main/java/com/paulrybitskyi/commons/listeners)\n\n## Installation\n1. Make sure that you've added the `mavenCentral()` repository to your top-level `build.gradle` file.\n\n````groovy\nbuildscript {\n    //...\n    repositories {\n        //...\n        mavenCentral()\n    }\n    //...\n}\n````\n\n2. Add the specific library dependency to your module-level `build.gradle` file.\n\n````groovy\ndependencies {\n    //...\n    implementation \"com.paulrybitskyi.commons:commons-core:1.0.4\"\n    implementation \"com.paulrybitskyi.commons:commons-ktx:1.0.4\"\n    implementation \"com.paulrybitskyi.commons:commons-window-anims:1.0.2\"\n    implementation \"com.paulrybitskyi.commons:commons-recyclerview:1.0.2\"\n    implementation \"com.paulrybitskyi.commons:commons-material:1.0.3\"\n    implementation \"com.paulrybitskyi.commons:commons-navigation:1.0.3\"\n    implementation \"com.paulrybitskyi.commons:commons-device-info:1.0.2\"\n    implementation \"com.paulrybitskyi.commons:commons-network:1.0.3\"\n    implementation \"com.paulrybitskyi.commons:commons-widgets:1.0.3\"\n    implementation \"com.paulrybitskyi.commons:commons-listeners:1.0.3\"\n    //...\n}\n````\n\n## License\n\nAndroid-Commons is licensed under the [Apache 2.0 License](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmars885%2Fandroid-commons","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmars885%2Fandroid-commons","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmars885%2Fandroid-commons/lists"}