Hi, trying to set serialVersionUID for a data clas...
# getting-started
h
Hi, trying to set serialVersionUID for a data class and it seems that it doesn't picked up, is there something wrong with this:
Copy code
data class MyModel (val name: String, val age: Int) : Serializable {
    private val serialVersionUID = 0L
}