If I wanted to distinguish between dev and prod versions of my app, what would be a good approach? Is the BuildKonfig library the preferred solution? It seems more Android/iOS multiplatform focused than for Desktop. Maybe this is more of a plain Kotlin that Compose Desktop question...
Using separate Gradle module was an overkill in my case because I only have some different constants depending on the environment. I've put my constants in the
gradle.properties
file, which then populates the BuildConfig generated class.