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
yigit
10/27/2021, 3:21 PM
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
natario1
10/27/2021, 3:24 PM
I see, I'll try, thanks!
j
Jakhongir Madaminov
11/23/2021, 1:31 PM
OMG spent tooo long trying to figure this out. It worked thanx Yigit!