Anyone else finding that upgrading to Xcode 11 bre...
# kotlin-native
j
Anyone else finding that upgrading to Xcode 11 breaks iOS tests in a multiplatform project?
e
Add --standalone to the command line for xcrun. exec { commandLine("xcrun", "simctl", "spawn", "--standalone", device, binary.absolutePath) }
👀 1
👍 2
j
@Erik Christensen Thank you! that did it
t
@Erik Christensen 👍