Inlining Kotlin Properties

Did you know that you can inline properties in Kotlin? I discovered this small feature accidentally while browsing through Kotlin docs, and thought it’s worth a short article. So why is this useful? [Read More]
Tags: kotlin

Where Should I Keep My Constants in Kotlin?

There has recently been a discussion online about the best approach for storing global constants, or public static final fields in Javaspeak. This short article describes available options and points out some of the pitfalls you can run into. But before we start, let’s talk a bit about decompiling Kotlin... [Read More]
Tags: kotlin