I am trying to replace kapt with ksp with androidx...
# ksp
n
I am trying to replace kapt with ksp with androidx.room , but it fails at runtime because the generated Database_Impl does not exist. Indeed
build/generated/ksp
is empty. Does anyone know how to debug this issue? I tried to run the ksp task with --info, but did not get anything useful. Using room 2.3.0 and ksp 1.5.31-1.0.0, which might be a mismatch but I'd expect the build to fail then?
y
You should use the latest room beta. I think between 2.3 and 2.4, ksp changed how processors are registered so that might be why it is not discovered
🤟 2
n
I see, I'll try, thanks!
j
OMG spent tooo long trying to figure this out. It worked thanx Yigit!