Cicero
06/28/2024, 3:13 PMmacOS {
infoPlist {
extraKeysRawXml = """
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
""".trimIndent()
}
}
and
apple {
iosApp {
productName = "MultiFactor"
sceneDelegateClass = "SceneDelegate"
launchStoryboard = "LaunchScreen"
mainStoryboard = "LaunchScreen"
//productInfo["NSAppTransportSecurity"] = mapOf("NSAllowsArbitraryLoads" to true)
//buildSettings.OTHER_LDFLAGS("")
dependencies {
implementation(project(":mobileapp"))
}
}
}
But these do not seem to apply anymore (in my case I needed to do this for my iOS app), is there a way to do it?