Skip to content

Commit

Permalink
refactor: default adb screencap method exclude RayByNetcat
Browse files Browse the repository at this point in the history
  • Loading branch information
dongwlin committed Nov 29, 2024
1 parent c23269a commit 1a216eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const (
AdbScreencapMethodEmulatorExtras AdbScreencapMethod = 1 << 6

AdbScreencapMethodAll = ^AdbScreencapMethodNone
AdbScreencapMethodDefault = AdbScreencapMethodAll & (^AdbScreencapMethodMinicapDirect) & (^AdbScreencapMethodMinicapStream)
AdbScreencapMethodDefault = AdbScreencapMethodAll & (^AdbScreencapMethodRawByNetcat) & (^AdbScreencapMethodMinicapDirect) & (^AdbScreencapMethodMinicapStream)
)

// AdbInputMethod
Expand Down

0 comments on commit 1a216eb

Please sign in to comment.