Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion module/device/connection_attr.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,12 @@ def is_mumu12_family(self):
def is_mumu_family(self):
# 127.0.0.1:7555
# 127.0.0.1:16384 + 32*n
return self.serial == '127.0.0.1:7555' or self.is_mumu12_family
# MuMu Pro on macOS may expose a generic emulator-* serial instead.
return (
self.serial == '127.0.0.1:7555'
or self.is_mumu12_family
or self.config.EmulatorInfo_Emulator == 'MuMuPro'
)

@cached_property
def is_ldplayer_bluestacks_family(self):
Expand Down
Loading