James Black
01/29/2023, 2:19 AMCould not create task ':androidApp:compileDebugKotlin'.> Cannot convert the provided notation to a File or URI: [/Users/jamesblack/AndroidStudioProjects/MyPasswordSafe/androidApp/build/generated/ksp/debug/kotlin].
implementation("io.insert-koin:koin-core:3.3.0")
implementation("io.insert-koin:koin-android:3.2.1")
implementation("io.insert-koin:koin-annotations:1.1.0")
implementation("io.insert-koin:koin-androidx-compose:3.2.0")
implementation("io.insert-koin:koin-android:3.2.1")
implementation("io.insert-koin:koin-androidx-viewmodel:2.2.3")
ksp("io.insert-koin:koin-ksp-compiler:1.1.0")
And this was the cause of the error. I am not certain what else is needed to help me resolve the error.
applicationVariants.all {
val variantName = name
sourceSets {
getByName("main") {
java.srcDir(File("build/generated/ksp/$variantName/kotlin"))
}
}
}
arnaud.giuliani
01/30/2023, 9:52 AM