From 7245b5817efdcb275391597f1834c68e65e4e59e Mon Sep 17 00:00:00 2001 From: LYK Date: Thu, 2 Mar 2023 23:47:28 +0900 Subject: [PATCH] =?UTF-8?q?=EC=98=A4=ED=83=80=EB=A5=BC=20=EC=88=98?= =?UTF-8?q?=EC=A0=95=ED=95=98=EC=98=80=EC=8A=B5=EB=8B=88=EB=8B=A4.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _posts/2020-07-14-android-dagger-hilt.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/_posts/2020-07-14-android-dagger-hilt.md b/_posts/2020-07-14-android-dagger-hilt.md index f3673e3..1ea48cc 100644 --- a/_posts/2020-07-14-android-dagger-hilt.md +++ b/_posts/2020-07-14-android-dagger-hilt.md @@ -1,3 +1,5 @@ + + --- layout: post date: 2020-07-28 @@ -74,7 +76,7 @@ class HakunaApplication : Application() Hilt에서 표준적으로 제공하는 Component, 관련 Scope, 생성 및 파괴 시점은 아래와 같습니다. -| Compoent | Scope | Created at | Destroyed at | +| Component | Scope | Created at | Destroyed at | | :-----------------------: | :---------------------: | :--------------------: | :---------------------: | | ApplicationComponent | @Singleton | Application#onCreate() | Application#onDestroy() | | ActivityRetainedComponent | @ActivityRetainedScoped | Activity#onCreate() | Activity#onDestroy() |