Assigned
Status Update
Comments
yb...@google.com <yb...@google.com> #2
by default, kotlin won't create a method w/o that argument and since Room generates java, it cannot call it w/o having a way to create that variable.
Did you try annotating the constructor w/ @JvmOverloads?
https://kotlinlang.org/docs/reference/java-to-kotlin-interop.html#overloads-generation
Did you try annotating the constructor w/ @JvmOverloads?
yb...@google.com <yb...@google.com>
sa...@gmail.com <sa...@gmail.com> #3
I am also facing same issue.. Any Solution...?
yb...@google.com <yb...@google.com>
da...@google.com <da...@google.com> #4
Using @JvmOverloads should work. One day in the not-so-distant future we might generate Kotlin and this won't be an issue.
fe...@gmail.com <fe...@gmail.com> #5
still an issue in Room 2.3.0
yb...@google.com <yb...@google.com> #6
Sorry, it is not feasible to fix this until we generate kotlin code.
Meanwhile, did you try the JvmOverloads path?
gm...@gmail.com <gm...@gmail.com> #7
Trick with @JvmOverloads
works with KAPT, but not with KSP. Any ideas?
yb...@google.com <yb...@google.com> #9
as in , bug in Room's KSP pipeline.
pr...@gmail.com <pr...@gmail.com> #10
When I try @JvmOverloads I get the build error: Room cannot pick a constructor since multiple constructors are suitable. Try to annotate unwanted constructors with @Ignore. (My entity has a number of fields with default values, mostly nullable fields that default to null.)
yb...@google.com <yb...@google.com>
wa...@gmail.com <wa...@gmail.com> #11
Still not works in Room 2.5.0, but
ru...@gmail.com <ru...@gmail.com> #12
@Ignore
@SerializedName("operations_storages")
var _operationStorageList: MutableList<OperationStorage> = mutableListOf(),
It works with kapt but doesn't with ksp (
I guess this one isn't Room issue but ksp
@SerializedName("operations_storages")
var _operationStorageList: MutableList<OperationStorage> = mutableListOf(),
It works with kapt but doesn't with ksp (
I guess this one isn't Room issue but ksp
bo...@gmail.com <bo...@gmail.com> #13
If this can't be fixed for Kotlin, can we please fix
Description
Version used: 1.0.0
Let's say you have the following data class:
data class MyUser(
val id: String,
val firstName: String,
val lastName: String?,
@Ignore
var supportTickets: List<SupportTicket>? = null
)
You would expect Room to be able to use the data class constructor, feeding null to supportTickets, but instead, you get a compilation error with the following message:
Entities and Pojos must have a usable public constructor. You can have an empty constructor or a constructor whose parameters match the fields (by name and type).
Could this be improved to at least support feeding null on nullable @Ignore annotated constructor properties?