https://github.com/psmorandi/android-domain-notifications
Implementation of notification pattern, where an object collects all information about errors in the domain layer and communicate it to the presentation layer.
https://github.com/psmorandi/android-domain-notifications
android-domain-notifications notification-pattern
Last synced: 30 days ago
JSON representation
Implementation of notification pattern, where an object collects all information about errors in the domain layer and communicate it to the presentation layer.
- Host: GitHub
- URL: https://github.com/psmorandi/android-domain-notifications
- Owner: psmorandi
- License: mit
- Created: 2019-06-17T17:54:45.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-04T22:09:47.000Z (almost 5 years ago)
- Last Synced: 2023-07-04T09:26:40.181Z (over 2 years ago)
- Topics: android-domain-notifications, notification-pattern
- Language: Kotlin
- Homepage:
- Size: 86.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# android-domain-notifications
[](https://github.com/psmorandi/android-domain-notifications/actions/workflows/ci.yml)
About
-----
Implementation of notification pattern, where an object collects all information about errors in the domain layer and communicate it to the presentation layer. Based on the great work by @andrebaltieri: https://github.com/andrebaltieri/flunt.
Usage
-----
Configure your `build.gradle` to access Maven Central:
```
repositories {
mavenCentral()
}
```
Then add the dependency:
```
dependencies {
implementation 'io.github.com:domain-notifications:2.0.0'
}
```
Please check unit tests for example on how to use this library.