[异常解决] 错误: Type of the parameter must be a class annotated with @Entity or a collection/array of it.

具体错误如下

 //错误:
 
Type of the parameter must be a class annotated with @Entity or a collection/array of it.
    kotlin.coroutines.Continuation<? super kotlin.Unit> continuation);
 
 //错误: 
Not sure how to handle insert method's return type.
    public abstract java.lang.Object insertAll(@org.jetbrains.annotations.NotNull()

更新了Kotlin版本以后,用到Android Jetpack Room库的模块编译报错,经过一番搜索没有得到正确的解决方案,后面对比kotlin源文件和编译的java文件,发现是Room的Dao类中定义的函数因为加了suspend导致编译后的函数多了一个参数:

@org.jetbrains.annotations.Nullable()
@androidx.room.Insert(onConflict = androidx.room.OnConflictStrategy.REPLACE)
public abstract java.lang.Object insertAll(@org.jetbrains.annotations.NotNull()
java.util.List<ButtonEntity> list, @org.jetbrains.annotations.NotNull()
kotlin.coroutines.Continuation<? super kotlin.Unit> continuation);

就是这个@org.jetbrains.annotations.NotNull() kotlin.coroutines.Continuation<? super kotlin.Unit> continuation)编译时报Type of the parameter must be a class annotated with @Entity or a collection/array of it.错误。

具体原因暂时没去深究,临时的解决方案是去掉Dao类中函数的suspend,特此记录下,后面有空再研究下此问题的来龙去脉。

最终解决方案

修改Room的版本

遇到此问题的朋友,可以按照上图中的解决方式更新Room到对应的版本解决此问题。

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容