anyone have a trick for not auto-generating functi...
# random
t
anyone have a trick for not auto-generating function bodies in Android Studio? I went into Preferences > Editor > File and Code Templates and removed the text in
New Kotlin Function Body
, but now this is what i get when I auto-generate overrides for interface vals:
Copy code
override val id: String
        get() =
        override
    val version: String
        get() =
        override
what I want is:
Copy code
override val id: String

override val version: String