is it possible to add annotations to variables def...
# getting-started
m
is it possible to add annotations to variables defined in interfaces? i.e
Copy code
interface foo {
    @StringRes val text: Int
}
m
yeah, you just have to specify
@get:StringRes
in this case
m
thanks!