Skip to content

Commit

Permalink
Adds iOS 17 to start-device (#1569)
Browse files Browse the repository at this point in the history
Updates supported version in start device command
  • Loading branch information
ArthurSav authored Nov 2, 2023
1 parent 601c7b8 commit 22a76ec
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions maestro-cli/src/main/java/maestro/cli/util/DeviceConfig.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ package maestro.cli.util
internal object DeviceConfigIos {

val device: String = "iPhone-11"
val versions = listOf(15, 16)
val versions = listOf(15, 16, 17)
val runtimes = mapOf(
15 to "iOS-15-5",
16 to "iOS-16-2"
16 to "iOS-16-2",
17 to "iOS-17-0"
)

val defaultVersion = 15
Expand Down

0 comments on commit 22a76ec

Please sign in to comment.