diff --git a/multiplatform-settings-test/build.gradle.kts b/multiplatform-settings-test/build.gradle.kts index abbf31fa..ea468d35 100644 --- a/multiplatform-settings-test/build.gradle.kts +++ b/multiplatform-settings-test/build.gradle.kts @@ -142,7 +142,7 @@ task("iosTest") { val testBinaryPath = (kotlin.targets["iosSim"] as KotlinNativeTarget).binaries.getTest("DEBUG").outputFile.absolutePath exec { - commandLine("xcrun", "simctl", "spawn", "--standalone", "iPhone Xʀ", testBinaryPath) + commandLine("xcrun", "simctl", "spawn", "--standalone", "iPhone 11", testBinaryPath) } } } diff --git a/multiplatform-settings/build.gradle.kts b/multiplatform-settings/build.gradle.kts index 916b8452..65935bcf 100644 --- a/multiplatform-settings/build.gradle.kts +++ b/multiplatform-settings/build.gradle.kts @@ -146,7 +146,7 @@ task("iosTest") { val testBinaryPath = (kotlin.targets["iosSim"] as KotlinNativeTarget).binaries.getTest("DEBUG").outputFile.absolutePath exec { - commandLine("xcrun", "simctl", "spawn", "--standalone", "iPhone Xʀ", testBinaryPath) + commandLine("xcrun", "simctl", "spawn", "--standalone", "iPhone 11", testBinaryPath) } } } diff --git a/sample/shared/build.gradle.kts b/sample/shared/build.gradle.kts index e9f9ab29..7de5f188 100644 --- a/sample/shared/build.gradle.kts +++ b/sample/shared/build.gradle.kts @@ -131,7 +131,7 @@ task("iosTest") { val testBinaryPath = (kotlin.targets["ios"] as KotlinNativeTarget).binaries.getTest("DEBUG").outputFile.absolutePath exec { - commandLine("xcrun", "simctl", "spawn", "--standalone", "iPhone Xʀ", testBinaryPath) + commandLine("xcrun", "simctl", "spawn", "--standalone", "iPhone 11", testBinaryPath) } } }