Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bfpimentel/android-modular-features-template

Android project template with feature modularization in mind. Using Hilt DI for inverting the navigation dependency.
https://github.com/bfpimentel/android-modular-features-template

Last synced: 12 days ago
JSON representation

Android project template with feature modularization in mind. Using Hilt DI for inverting the navigation dependency.

Awesome Lists containing this project

README

        

# Android Feature Modules Template



This is a representation of the architecture, it may vary depending on your use case.


The arrows on the top can be read as "talks to".

- Each of the the feature modules on the project have a navigation module which is implemented by itself. Example: **:feature1** implements **:navigation:feature1**, and any other module can consume **:navigation:feature1**.
- Feature modules don't know how the implementation of other modules is done.
- The implementation is provided through **Dependency Inversion**.
- The module responsible for knowing all the feature modules and providing the instances of the navigation of each of these is the **:navigation:core** module.