I have an app that was using alpha 3 of room persi...
# android
g
I have an app that was using alpha 3 of room persistence lib. Now I am trying to move it to 1.0.0 stable but doing so breaks the kaptDebugKotlin task. The weird thing is that this starts happening with room version
1.0.0-beta1
and above. Works fine till
1.0.0-alpha9-1
. Above that, the task always fails with a whole lot of
error: cannot find symbol
for databinding classes. However, I can actually see those generated files in
app/build/generated/source/kapt/prodDebug/...
. I tried building with --stacktrace and --debug but couldn't figure out what to look for in there. Stuck on this for a few hours now. How do I figure out why kapt keeps failing even though code is being generated?
b
Can you post your Gradle build? Guessing one of your imports is incorrect