Not sure how to convert a Cursor to this method‘s return type (androidx.paging.PagingSource)
在集成jetpack paging3的过程中,集成Room的时候,编译不通过,报该问题经过反复对比,我的方法签名加了suspend,去掉了就好了。具体详细原因还没找到。报错前代码@Query("SELECT * FROM medicines ORDER BY name")suspend fun getMedicines(): PagingSource<Int, Medicine>修复后
·
在集成jetpack paging3的过程中,集成Room的时候,编译不通过,报该问题
经过反复对比,我的方法签名加了suspend,去掉了就好了。具体详细原因还没找到。
- 报错前代码
@Query("SELECT * FROM medicines ORDER BY name")
suspend fun getMedicines(): PagingSource<Int, Medicine>
- 修复后代码
@Query("SELECT * FROM medicines ORDER BY name")
fun getMedicines(): PagingSource<Int, Medicine>
更多推荐
已为社区贡献3条内容
所有评论(0)