错误描述
在接入jetpack中的room和paging过程中,遇到了如下编译错误:
Not sure how to convert a Cursor to this method's return type (androidx.paging.PagingSource
问题临时解决办法
查找到当前错误发生的语句,我书写的方法如下:
@Query("SELECT * FROM " + SavedLocationEntity.tableName)
abstract suspend fun queryAll(): PagingSource<Int,SavedLocationEntity>?
将suspend关键字删除后重新执行,问题已解决,原因尚不清晰。
网友评论