Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/bfpimentel/android-modular-features-template
- Owner: bfpimentel
- Created: 2021-07-12T18:00:38.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-07-12T19:27:17.000Z (over 3 years ago)
- Last Synced: 2024-11-05T09:20:35.337Z (about 2 months ago)
- Language: Kotlin
- Homepage:
- Size: 206 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.