{"id":20579648,"url":"https://github.com/wolox/wolmo-core-android","last_synced_at":"2025-04-14T19:21:50.351Z","repository":{"id":13539062,"uuid":"53592496","full_name":"Wolox/wolmo-core-android","owner":"Wolox","description":"Wolmo Core - Wolox Mobile SDK core module for Android","archived":false,"fork":false,"pushed_at":"2023-02-17T13:13:30.000Z","size":505,"stargazers_count":7,"open_issues_count":1,"forks_count":10,"subscribers_count":27,"default_branch":"master","last_synced_at":"2025-03-28T07:41:36.200Z","etag":null,"topics":["android","framework","sdk","wolmo","wolox"],"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/Wolox.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-03-10T14:50:36.000Z","updated_at":"2023-02-17T13:17:06.000Z","dependencies_parsed_at":"2023-02-15T20:15:31.793Z","dependency_job_id":null,"html_url":"https://github.com/Wolox/wolmo-core-android","commit_stats":null,"previous_names":[],"tags_count":21,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Wolox%2Fwolmo-core-android","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Wolox%2Fwolmo-core-android/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Wolox%2Fwolmo-core-android/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Wolox%2Fwolmo-core-android/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Wolox","download_url":"https://codeload.github.com/Wolox/wolmo-core-android/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248943415,"owners_count":21186958,"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","framework","sdk","wolmo","wolox"],"created_at":"2024-11-16T06:17:50.048Z","updated_at":"2025-04-14T19:21:50.332Z","avatar_url":"https://github.com/Wolox.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build Status](https://app.bitrise.io/app/effc7a938ebd8bc5/status.svg?token=5aAalVW4BGoIUIy-xgHv3A\u0026branch=master)](https://app.bitrise.io/app/effc7a938ebd8bc5)\n[![Release](https://jitpack.io/v/Wolox/wolmo-core-android.svg)](https://jitpack.io/#Wolox/wolmo-core-android)\n[![Coverage Status](https://coveralls.io/repos/github/Wolox/wolmo-core-android/badge.svg?branch=master)](https://coveralls.io/github/Wolox/wolmo-core-android?branch=master)\n\n\u003cp align=\"center\"\u003e\n  \u003cimg height=\"140px\" width=\"400px\" src=\"https://cloud.githubusercontent.com/assets/4109119/25450281/cac5979e-2a94-11e7-9176-8e323df5dab8.png\"/\u003e\n\u003c/p\u003e\n\n# WOLMO\n\nWOLMO is a an opinionated framework designed to reduce the time taken to develop mobile applications by cutting off boilerplate code and offering MVP-ready fragments and activities while also providing utilities and helper classes for everyday tasks.\n\n#### Design principles\n1. **Opinionated:** WOLMO is an opinionated framework. That means that we aim to define one \"best way\" of handling everyday tasks, including using certain third-party libraries, approaches and architectural decisions that we believe will make app development faster and easier.\n2. **Modular:** The framework delegates functionalities to modules designed specifically to fulfil their role.\n3. **Mashable:** WOLMO is an open source community-driven project intended for real life projects. Every contribution will be taken into account.\n\n### Modules\n\nWOLMO is made up of several modules, each one supporting a different role in the production of modern apps. The following are the current modules available for the WOLMO framework.\n\n* **CORE:** This module provides standalone base classes and utilities of the framework. As a general rule, this module will be required in any WOLMO-based project. CORE is also a generally required dependency of other modules.\n* **NETWORKING:** This module provides offline capabilities and abstracts the network layer of the rest of the project.\n* **AUTH:** Provides utilities for accounts, login and signup features.\n* **MAPS:** Google Maps helpers classes and views.\n\n## Installation\n\nImport the module as a library in your project using Gradle:\n\n**root build.gradle**\n```groovy\nallprojects {\n  repositories {\n    ...\n    maven { url 'https://jitpack.io' }\n  }\n}\n```\n**your app module build.gradle**\n```groovy\ndependencies {\n        compile 'com.github.Wolox:wolmo-core-android:master-SNAPSHOT'\n}\n```\nNote: The above line will download the latest version of the module, if you want to run a specific version replace `master-SNAPSHOT` with `2.0.0` or any other version. Available versions can be found here: [Github releases](https://github.com/Wolox/wolmo-core-android/releases)\n\n## Features\n\nCORE is the base module of the framework and provides all of the must have classes and utilities. These modules define the opinionated character of the framework and may be used by other modules to fulfill their role.\n\n\u003e Every module may depend on CORE, but not the other way around.\n\nThese features can be found in CORE:\n\n* MVP-ready activities and fragments\n* Files helpers\n* Camera and image helpers\n\n[See all the features available here.](FEATURES.md)\n\n## \u003ca name=\"topic-contributing\"\u003e\u003c/a\u003e Contributing\n\n1. Fork it\n2. Create your feature branch (`git checkout -b my-new-feature`)\n3. Commit your changes (`git commit -am 'Add some feature'`)\n4. Push your branch (`git push origin my-new-feature`)\n5. Create a new Pull Request\n\n## \u003ca name=\"topic-about\"\u003e\u003c/a\u003e About\n\nThis project is maintained by [Juan Ignacio Molina](https://github.com/juanignaciomolina)\nand it was written by [Wolox](http://www.wolox.com.ar).\n\n![Wolox](https://raw.githubusercontent.com/Wolox/press-kit/master/logos/logo_banner.png)\n\n## \u003ca name=\"topic-license\"\u003e\u003c/a\u003e License\n\n**WOLMO CORE** is available under the MIT [license](https://raw.githubusercontent.com/Wolox/wolmo-core-android/master/LICENSE.md).\n\n    Copyright (c) Wolox S.A\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\n    all 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\n    THE SOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwolox%2Fwolmo-core-android","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwolox%2Fwolmo-core-android","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwolox%2Fwolmo-core-android/lists"}