-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove hilt dependency #153
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
오류 없이 모든 기능 잘 작동하나요?
네 매우 잘 작동합니다. |
loginViewModelModule, | ||
registerViewModelModule, | ||
settingViewModelModule, | ||
) + mainViewModelModules, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
move mainViewModelModules in list
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
move mainViewModelModules in list
다음과 같이 처리한 이유는 의존성 트리때문에 그렇습니다.
- DodamApp
- main
- member
- home
- nightstudy
- etc..
- login
- register
- etc...
그래서, member, home, nightstudy등 모두 main에서만 접근하고 있기에 하위모듈들을 올리고자 main에서 List로 묶어 모듈을 묶었습니다. 그리고 난뒤 DodamApplication 에서 참조해서 사용하고 있습니다.
- main
Overview (Required)
Issue