From 4811cf07cdbf052dc3ddd2916e56ed81b6dc652a Mon Sep 17 00:00:00 2001 From: AntsyLich <59261191+AntsyLich@users.noreply.github.com> Date: Mon, 29 Jan 2024 14:13:55 +0600 Subject: [PATCH] Address build warning in `:i18n` And small cleanup --- i18n/build.gradle.kts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/i18n/build.gradle.kts b/i18n/build.gradle.kts index 366e19ad3..9ed5a6cbf 100644 --- a/i18n/build.gradle.kts +++ b/i18n/build.gradle.kts @@ -6,14 +6,18 @@ plugins { kotlin { androidTarget() + + applyDefaultHierarchyTemplate() + sourceSets { val commonMain by getting { dependencies { api(libs.moko.core) } } - val androidMain by getting { - dependsOn(commonMain) // https://github.com/icerockdev/moko-resources/issues/562 + + androidMain { + dependsOn(commonMain) // https://github.com/icerockdev/moko-resources/issues/562 } } }