使用Room报错 AppDatabase_Impl does not exist

最近学习 Jetpack Room在调用是爆这个错 AppDatabase_Impl does not exist

我说一下我的问题是怎么修改的:

1.引入kotlin-kapt,并把把 annotationProcessor 改成 kapt

plugins {
    ...
    id 'kotlin-kapt'
}  
dependencies{
    ...
    //def roomVersion = "2.2.6"
    def roomVersion = "2.3.0"
    implementation "androidx.room:room-runtime:$roomVersion"
    implementation "androidx.room:room-ktx:$roomVersion"
    kapt "androidx.room:room-compiler:$roomVersion"
    //annotationProcessor "androidx.room:room-compiler:$roomVersion"
}
 

2.刚开始的版本是2.2.6 结果编译报错 app:kaptDebugKotlin,我把版本改成2.3.0就可以了,这个版本号是根据你kotlin 版本来修改的,你的不一定是2.3.0就编译通过了

使用Room报错 AppDatabase_Impl does not exist_第1张图片

你可能感兴趣的:(android,kotlin,Room)