diff --git a/build-logic/convention/src/main/kotlin/CmpFeatureConventionPlugin.kt b/build-logic/convention/src/main/kotlin/CmpFeatureConventionPlugin.kt index adf8167a5..810cef42b 100644 --- a/build-logic/convention/src/main/kotlin/CmpFeatureConventionPlugin.kt +++ b/build-logic/convention/src/main/kotlin/CmpFeatureConventionPlugin.kt @@ -29,7 +29,7 @@ class CmpFeatureConventionPlugin : Plugin { with(target) { pluginManager.apply { apply("nowinandroid.kmp.library") - apply("nowinandroid.kmp.inject") + apply("nowinandroid.di.koin") apply("org.jetbrains.kotlin.plugin.compose") apply("org.jetbrains.compose") } @@ -47,6 +47,9 @@ class CmpFeatureConventionPlugin : Plugin { add("commonMainImplementation", project(":core:designsystem")) add("commonMainImplementation", libs.findLibrary("jetbrains.compose.viewmodel").get()) add("commonMainImplementation", libs.findLibrary("jetbrains.compose.navigation").get()) + add("commonMainImplementation", libs.findLibrary("koin.compose").get()) + add("commonMainImplementation", libs.findLibrary("koin.compose.viewmodel").get()) + add("commonMainImplementation", libs.findLibrary("koin.compose.viewmodel.navigation").get()) add("androidMainImplementation", libs.findLibrary("androidx.hilt.navigation.compose").get()) add("androidMainImplementation", libs.findLibrary("androidx.lifecycle.runtimeCompose").get())