File tree Expand file tree Collapse file tree
app/src/main/kotlin/com/google/ai/sample/feature/chat Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -195,6 +195,7 @@ fun ChatScreen(
195195 is Command .ClickButton -> " Klick auf Button: \" ${command.buttonText} \" "
196196 is Command .TapCoordinates -> " Tippen auf Koordinaten: (${command.x} , ${command.y} )"
197197 is Command .TakeScreenshot -> " Screenshot aufnehmen"
198+ is Command .PressHomeButton -> " Home-Button drücken"
198199 }
199200
200201 Text (
Original file line number Diff line number Diff line change @@ -118,6 +118,7 @@ class ChatViewModel(
118118 is Command .ClickButton -> " Klick auf Button: \" ${it.buttonText} \" "
119119 is Command .TapCoordinates -> " Tippen auf Koordinaten: (${it.x} , ${it.y} )"
120120 is Command .TakeScreenshot -> " Screenshot aufnehmen"
121+ is Command .PressHomeButton -> " Home-Button drücken"
121122 }
122123 }
123124
@@ -167,6 +168,7 @@ class ChatViewModel(
167168 is Command .ClickButton -> " Klick auf Button: \" ${command.buttonText} \" "
168169 is Command .TapCoordinates -> " Tippen auf Koordinaten: (${command.x} , ${command.y} )"
169170 is Command .TakeScreenshot -> " Screenshot aufnehmen"
171+ is Command .PressHomeButton -> " Home-Button drücken"
170172 }
171173
172174 _commandExecutionStatus .value = " Führe aus: $commandDescription (${index + 1 } /${commands.size} )"
You can’t perform that action at this time.
0 commit comments