Kotlin 1.6 android 中的协程错误
Coroutines bug in android with Kotlin 1.6
我刚刚将 kotlin 从 1.5 更新到 1.6,并且这个功能
@Query("SELECT * FROM Noticia")
suspend fun selectAll() :List<Noticia>
给我以下错误:
error: Not sure how to convert a Cursor to this method's return type (java.lang.Object).
public abstract java.lang.Object selectAll(@org.jetbrains.annotations.NotNull()
我猜是因为 kotlin 的新版本,但我不确定
我使用的是过时的房间版本,我所做的就是将房间版本更改为:
def room_version = "2.3.0"
我刚刚将 kotlin 从 1.5 更新到 1.6,并且这个功能
@Query("SELECT * FROM Noticia")
suspend fun selectAll() :List<Noticia>
给我以下错误:
error: Not sure how to convert a Cursor to this method's return type (java.lang.Object).
public abstract java.lang.Object selectAll(@org.jetbrains.annotations.NotNull()
我猜是因为 kotlin 的新版本,但我不确定
我使用的是过时的房间版本,我所做的就是将房间版本更改为:
def room_version = "2.3.0"