Skip to content

Commit 09cc205

Browse files
authored
fix: launch android emulator with netspeed full, netdelay none and qt-hide-window (#137)
1 parent 38fdc5b commit 09cc205

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

devices/android.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ func (d *AndroidDevice) Boot() error {
533533
defer cancel()
534534

535535
// launch emulator in background without context (so it persists after function returns)
536-
cmd := exec.Command(getEmulatorPath(), "-avd", d.id)
536+
cmd := exec.Command(getEmulatorPath(), "-netdelay", "none", "-netspeed", "full", "-avd", d.id, "-qt-hide-window")
537537
err := cmd.Start()
538538
if err != nil {
539539
return fmt.Errorf("failed to start emulator: %w", err)

0 commit comments

Comments
 (0)