How can I add entries to a plist file for ios?
# amper
s
How can I add entries to a plist file for ios?
👀 4
a
Hi! what do you mean by ios module?
ios/app
module? if yes, you could use gradle interop and try something like this:
Copy code
apple {
    targets.findByName("iosApp")?.productInfo?.let { it["key"] = "value" }
}
to use gradle interop just put
build.gradle.kts
right next to
module.yaml