具体错误如下:
错误: 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,特此记录下,后面有空再研究下此问题的来龙去脉。
2022年08月09日更新:
遇到此问题的朋友,可以按照评论里的蓝田老利和DukerDev更新Room到对应的版本解决此问题。感谢大家热心回复!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/116889.html