From 17f5d6b72bda13319e6c52fc91f24f2765a2c745 Mon Sep 17 00:00:00 2001 From: Tom Tresansky Date: Thu, 16 May 2024 16:05:11 -0400 Subject: [PATCH] Make use of new hilt extension --- core/common/build.gradle.dcl | 2 ++ core/data/build.gradle.dcl | 2 ++ 2 files changed, 4 insertions(+) diff --git a/core/common/build.gradle.dcl b/core/common/build.gradle.dcl index 41577c4c5..3a0060cdb 100644 --- a/core/common/build.gradle.dcl +++ b/core/common/build.gradle.dcl @@ -1,6 +1,8 @@ androidLibrary { namespace = "com.google.samples.apps.nowinandroid.core.common" + hilt {} + testing { dependencies { implementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.3") diff --git a/core/data/build.gradle.dcl b/core/data/build.gradle.dcl index a8b503144..7a779feae 100644 --- a/core/data/build.gradle.dcl +++ b/core/data/build.gradle.dcl @@ -11,6 +11,8 @@ androidLibrary { implementation(project(":core:notifications")) } + hilt {} + kotlinSerialization { jsonEnabled = true }