From f616e11d0ac77d79f7b765855091c0784caf5481 Mon Sep 17 00:00:00 2001 From: lihenggui Date: Fri, 8 Mar 2024 15:05:34 -0800 Subject: [PATCH] Add comments for temporary usage --- .../nowinandroid/core/notifications/di/NotificationsModule.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/core/notifications/src/commonMain/kotlin/com/google/samples/apps/nowinandroid/core/notifications/di/NotificationsModule.kt b/core/notifications/src/commonMain/kotlin/com/google/samples/apps/nowinandroid/core/notifications/di/NotificationsModule.kt index 1cf85ab09..a663f869b 100644 --- a/core/notifications/src/commonMain/kotlin/com/google/samples/apps/nowinandroid/core/notifications/di/NotificationsModule.kt +++ b/core/notifications/src/commonMain/kotlin/com/google/samples/apps/nowinandroid/core/notifications/di/NotificationsModule.kt @@ -22,6 +22,7 @@ import me.tatarka.inject.annotations.Provides internal abstract class NotificationsModule { + // TODO: Add a real implementation of Notifier foe each platform @Provides internal fun provideNotifier(): Notifier = NoOpNotifier() }