[K/N] Fix watchOS-simulator device name changed in XCode 14

This commit is contained in:
Pavel Punegov
2022-10-11 15:11:01 +02:00
parent b0b3698698
commit 51e337a148
@@ -273,7 +273,7 @@ private fun simulator(project: Project): ExecutorService = object : ExecutorServ
val default = project.findProperty("iosDevice")?.toString() ?: when (target.family) {
Family.TVOS -> "Apple TV 4K"
Family.IOS -> "iPhone 11"
Family.WATCHOS -> "Apple Watch Series 6 - 40mm"
Family.WATCHOS -> "Apple Watch Series 6 (40mm)"
else -> error("Unexpected simulation target: $target")
}