Hello! Is it possible to add debug strings with co...
# multiplatform
e
Hello! Is it possible to add debug strings with compose resources? For example in android, I had
androidApp > src > debug > res > strings.xml
and these strings were only taken when I was in
debug
, and for prod
androidApp > src > main > res > strings.xml
. Is there a similar approach for KMM?
☝️ 1
e
the Android target in KMP has variants like a non-KMP Android build,
src/androidMain
src/androidDebug
src/androidRelease
src/androidTest
src/androidDebugTest
etc.
the non-Android KMP targets do not have different sources for debug builds
e
So I guess that for
common
we can not do it, right?