<KMM how can I add custom value to Bundle.main.inf...
# stackoverflow
u
KMM how can I add custom value to Bundle.main.infoDictionary I have kotlin multiplatform project. I know that I can read from infoDictionary (infoplist) data in runtime with: val value = NSBundle.mainBundle.infoDictionary?.get("customValue") My question, how can I add customValue to infoDictionary as part of build process, in build.gradle.kts of shared. it.binaries.framework { baseName = "shared" embedBitcode("disable") // here I want to infoDictionary.add("customValue", myValue) }