Piotr Prus
01/20/2025, 11:34 AMMissing Definition type
for all my single{}
definitions from Koin. My previous setup was kotlin 1.9 and koin 3.4.3 and everything was working good.
My setup is as follows:
• in android project I am using koin modules defined using dsl like module { single { MyClass(get(), get()) } } and also annotations with ComponentScan
• in shared project (kmp) I am using only koin dsl
• the annotated classes (for example view models) are using shared classes (defined using dsl)
The error also says: Error occurred in KSP, check log for detail
Piotr Prus
01/20/2025, 2:14 PMAppModule().module
. the one that is generated from ksp,
import org.koin.ksp.generated.module
and everything looks correct. All my classes are there, no errors, but compiler crashes with missing definition type
for all of themPiotr Prus
01/21/2025, 9:33 AMarnaud.giuliani
01/21/2025, 10:04 AM