Adrian Witaszak
06/18/2023, 12:49 PMexperimental.uikit
is it possible to customise the ios generated project's info.plist
? So I can ad permission request reason?Dima Avdeev
06/18/2023, 1:00 PMAdrian Witaszak
06/18/2023, 1:03 PMiosArm64("uikitArm64") {
binaries {
executable {
entryPoint = "main"
freeCompilerArgs = freeCompilerArgs + listOf(
"-linker-option", "-framework", "-linker-option", "Metal",
"-linker-option", "-framework", "-linker-option", "CoreText",
"-linker-option", "-framework", "-linker-option", "CoreGraphics"
)
freeCompilerArgs = freeCompilerArgs + "-Xdisable-phases=VerifyBitcode"
}
}
}
and compose block
compose.experimental {
web.application {}
uikit.application {
bundleIdPrefix = project.group.toString()
projectName = rootProject.name
deployConfigurations {
simulator("IPhone13Pro") {
//Usage: ./gradlew iosDeployIPhone8Debug
device = org.jetbrains.compose.experimental.dsl.IOSDevices.IPHONE_13_PRO
}
connectedDevice("Device") {
// Usage: ./gradlew iosDeployDeviceRelease
// this.teamId = ""
}
}
}
}
Adrian Witaszak
06/18/2023, 1:04 PM.xcproject
gets generated when we run iosDeviceDeployDebug
Adrian Witaszak
06/18/2023, 1:05 PMDima Avdeev
06/18/2023, 1:06 PMAdrian Witaszak
06/18/2023, 1:07 PMDima Avdeev
06/18/2023, 1:07 PMdeployConfigurations {
simulator("IPhone13Pro")
Adrian Witaszak
06/18/2023, 1:08 PMAdrian Witaszak
06/18/2023, 1:09 PMDima Avdeev
06/18/2023, 1:13 PM