does Amper ios module support Info.plist file?
# amper
m
does Amper ios module support Info.plist file?
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
❤️ 1
m
didn't know about this apple DSL
where can I find a doc about it?
a
sorry, nowhere, this is an Apple Gradle Plugin it's not documented, we are using it for internal needs the only thing you could try is examine API using "go to declaration" and try to guess also you could ask me
👍 1