Using when and is operators in Kotlin for Java classes with cautious
Kotlin introduced handy operator called when instead of switch in Java. when (x) { 1 -> print("x == 1") 2 -> print("x == 2") else -> { /...
Kotlin introduced handy operator called when instead of switch in Java. when (x) { 1 -> print("x == 1") 2 -> print("x == 2") else -> { /...
In Kotlin classes are final by default and to be able to mock them you have to make additional configuration. You can find thousands of tutorials how to mock...
Several weeks ago I started to work on moving all code related to communication with APIs to a separate module.
One of the purpose of subcomponents is to encapsulate different parts from each other.
I recently decided to use Circle CI as Continuous Integration for my Android project. I opened circleci’s website click sign up choose my GitHub account conf...