Kotlin Code Smell 1 - Constants and Magic Numbers
TL;DR: Avoid using magic numbers without explanation. Their source is unknown, and we fear changing them.
Problems
Coupling
Low testability
Low readability
Solutions
Rename the constant with a meaningful and intention-revealing name.
Replace ...
yonatankarp.com1 min read