I use Room in my project, everything went well, but then when I try to launch it, it will crush me this error.
Caused by: java.lang.RuntimeException: cannot find implementation for via.rider.repository.ai. ai_Impl does not exist
I saw that all questions related to problems with build.config, but I have annotationProcessorset up
// Android Room
implementation "android.arch.persistence.room:runtime:$roomVersion"
annotationProcessor "android.arch.persistence.room:compiler:$roomVersion"
implementation "android.arch.persistence.room:rxjava2:$roomVersion"
implementation 'io.reactivex.rxjava2:rxandroid:2.0.2'
What could it be?
source
share