Hi What is the best way to manage `product flavors...
# multiplatform
p
Hi What is the best way to manage
product flavors
like android with
kotlin multiplatform
even for desktop and wasm platforms. example: devDebug, devRelease, stagingDebug, stagingRelease, prodDebug, prodRelease ?
👍 1
k
use gradle modules (sub-projects) + https://github.com/gmazzo/gradle-buildconfig-plugin
p
It seems very complex and no example in multiplatform project
m
Yes, definitely not great. I've found that making those modules so that you don't need manifest files makes everything much easier.
v
Does it support IS_DEBUG boolean?
p