WOLMO 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.
- 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.
- Modular: The framework delegates functionalities to modules designed specifically to fulfil their role.
- Mashable: WOLMO is an open source community-driven project intended for real life projects. Every contribution will be taken into account.
WOLMO 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.
- 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.
- COMPOSE: This module provides utilities and abstractions to help the development of Android Apps that uses the Compose Framework.
- TESTING: * This module provides a suite of methods to improve the process of writing instrumentation tests with Espresso, while also providing implementations to support fragment testing with Hilt.
Import the module as a library in your project using Gradle:
root build.gradle
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
your app module build.gradle
dependencies {
compile 'com.github.Wolox:wolmo-core-android:master-SNAPSHOT'
}
Note: 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
CORE 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.
Every module may depend on CORE, but not the other way around.
These features can be found in CORE:
- MVVM oriented.
- FileSystem Abstractions.
- Permission Management.
See all the features available here.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push your branch (
git push origin my-new-feature
) - Create a new Pull Request
This project is maintained and written mostly by collaborators of Wolox, part of Accenture.
WOLMO CORE is available under the MIT license.
Copyright (c) Wolox S.A
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.