Both const and @JvmField create constants. What can @JvmField do that const cannot?
class Styles {
companion object {
const val COLOR = "Blue"
@JvmField val SIZE = "Really big"
}
}
Both const and @JvmField create constants. What can @JvmField do that const cannot?
class Styles {
companion object {
const val COLOR = "Blue"
@JvmField val SIZE = "Really big"
}
}