Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jintin/daggersample
Sample for Dagger
https://github.com/jintin/daggersample
android dagger hilt
Last synced: about 1 month ago
JSON representation
Sample for Dagger
- Host: GitHub
- URL: https://github.com/jintin/daggersample
- Owner: Jintin
- License: mit
- Created: 2020-11-18T22:42:35.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-01-01T12:31:21.000Z (about 4 years ago)
- Last Synced: 2023-03-12T08:18:38.197Z (almost 2 years ago)
- Topics: android, dagger, hilt
- Language: Kotlin
- Homepage:
- Size: 160 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DaggerSample
[![CircleCI](https://circleci.com/gh/Jintin/DaggerSample.svg?style=shield)](https://circleci.com/gh/Jintin/DaggerSample)Series of different feature sample in Dagger
- [no-dagger](https://github.com/Jintin/DaggerSample/tree/master/no-dagger): Manually manage dependency
- [dagger-basic](https://github.com/Jintin/DaggerSample/tree/master/dagger-basic): Basic dagger usage with @Inject, @Component
- [dagger-module](https://github.com/Jintin/DaggerSample/tree/master/dagger-module): Sample of using @Module with @Provide and @Binds
- [dagger-scope](https://github.com/Jintin/DaggerSample/tree/master/dagger-scope): Sample of @Scope in Dagger
- [dagger-lazy](https://github.com/Jintin/DaggerSample/tree/master/dagger-lazy): Sample of Lazy and Provider
- [dagger-named](https://github.com/Jintin/DaggerSample/tree/master/dagger-named): Sample of identify same type of dependency
- [dagger-subcomponent](https://github.com/Jintin/DaggerSample/tree/master/dagger-subcomponent): Sample of using subcomponent to provide dependency via different scope of dependency
- [dagger-dependencies](https://github.com/Jintin/DaggerSample/tree/master/dagger-dependencies): Sample of using dependencies attribute to link different level of component in multi-module
- [dagger-multi-binding](https://github.com/Jintin/DaggerSample/tree/master/dagger-multi-binding): Sample of using multi-binding in Dagger
- [hilt-basic](https://github.com/Jintin/DaggerSample/tree/master/hilt-basic): Sample of benefit of using hilt on top of dagger