Mirror Android devices with wireless debugging effortlessly. Note: Requires avahi-browse, qrencode, scrcpy, and adb to be installed. See the README on GitHub for more information. If you encounter bugs or issues, please report them on GitHub.
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
EGO-L-003 warning
signals connected by extension should be disconnected in disable()
Signals assigned in `enable()` are missing matching disconnect calls in `disable()` or its helper methods.
extension.js:110
dialog.connect('closed', () => {
if (this._pairingPollTimeoutId) {
GLib.source_remove(this._pairingPollTimeoutId);
this._pairingPollTimeoutId = null;
}
this._pairingActive = false;
dialog.destroy();
this._pairingDialog = null;
EGO-L-004 warning
main loop sources should be removed in disable()
Main loop sources assigned in `enable()` are missing matching removals in `disable()` or its helper methods.
extension.js:290
GLib.timeout_add(GLib.PRIORITY_DEFAULT, ms, () => {
resolve();
return GLib.SOURCE_REMOVE;
})