specifically, > The same trick applies when we ...
# android
j
specifically,
The same trick applies when we need to have a property
x
alongside with a function `getX()`:
```
val x: Int @JvmName("getX_prop") get() = 15 fun getX() = 10 ```