Jan Mikulik
11/12/2024, 12:58 PMkspCommonMainMetadata
. Not sure if this belongs here in the channel as it includes multiple topics
plugins {
id("com.google.devtools.ksp")
}
ksp {
// enable compile time check
arg("KOIN_CONFIG_CHECK","true")
// disable default module generation
arg("KOIN_DEFAULT_MODULE","false")
}
val libs = the<LibrariesForLibs>()
dependencies {
add("kspCommonMainMetadata", libs.koin.ksp.compiler)
add("kspAndroid", libs.koin.ksp.compiler)
add("kspIosX64", libs.koin.ksp.compiler)
add("kspIosArm64", libs.koin.ksp.compiler)
add("kspIosSimulatorArm64", libs.koin.ksp.compiler)
}
Pedro Alberto
11/12/2024, 1:43 PMJan Mikulik
11/12/2024, 2:13 PMPedro Alberto
11/12/2024, 2:15 PMJan Mikulik
11/12/2024, 2:33 PMdependencies {
add("kspCommonMainMetadata", libs.koin.ksp.compiler)
add("kspAndroid", libs.koin.ksp.compiler)
add("kspIosX64", libs.koin.ksp.compiler)
add("kspIosArm64", libs.koin.ksp.compiler)
add("kspIosSimulatorArm64", libs.koin.ksp.compiler)
}
but I wanted to apply it from the convention plugin only once