Lots of errors and I can't find the solution, it's a college project for mobile apps
https://github.com/ThalesCaruso/Lista-de-Mercado
在这里输入图像描述输入图片描述
在youtube上看了很多教程,但是没有用
你正在使用
implementation 'androidx.room:room-compiler:2.5.0-beta02'
根据Room declaration Dependencies指南,你需要在Java项目中使用annotationProcessor
,而不是implementation
:
annotationProcessor 'androidx.room:room-compiler:2.5.0-beta02'