Android Studio 安卓运行时:致命异常:主要原因:java.lang.RuntimeException

mm9b1k5b  于 2022-11-25  发布在  Android
关注(0)|答案(1)|浏览(161)
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
enter image description hereenter image description here
看了很多youtube教程,但没有工作

31moq8wy

31moq8wy1#

您正在使用

implementation 'androidx.room:room-compiler:2.5.0-beta02'

根据Room Declaring Dependencies指南,您需要对Java项目使用annotationProcessor,而不是implementation

annotationProcessor 'androidx.room:room-compiler:2.5.0-beta02'

相关问题