humblehacker
04/30/2022, 2:12 PMenableComposeCompilerMetrics
, what does runtime
mean? I didn't see it mentioned in the documentation I've read, only stable
and unstable
. For example:
runtime class State {
stable val text: String
runtime var CREATOR: Creator<State>
<runtime stability> = Uncertain(Creator)
}
That's for this class declaration:
data class State(
val text: String = "",
) : Parcelable {
companion object
}
runtime var CREATOR: Creator<State>
? Why would the creator of a class instance affect a class's stability?