This is normal iosApp, but i'm asking about the generated xcode project we get if we use the experimental uikit with:
iosArm64("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 = ""
}
}
}
}