Retrieve device serial for AOA
The serial is necessary to find the correct Android device for AOA. If it is not explicitly provided by the user via -s, then execute "adb getserialno" to retrieve it.
This commit is contained in:
parent
d55015e4cf
commit
511356710d
1 changed files with 17 additions and 1 deletions
|
@ -436,7 +436,23 @@ scrcpy(struct scrcpy_options *options) {
|
||||||
if (options->keyboard_input_mode == SC_KEYBOARD_INPUT_MODE_HID) {
|
if (options->keyboard_input_mode == SC_KEYBOARD_INPUT_MODE_HID) {
|
||||||
#ifdef HAVE_AOA_HID
|
#ifdef HAVE_AOA_HID
|
||||||
bool aoa_hid_ok = false;
|
bool aoa_hid_ok = false;
|
||||||
if (!sc_aoa_init(&s->aoa, options->serial)) {
|
|
||||||
|
char *serialno = NULL;
|
||||||
|
|
||||||
|
const char *serial = options->serial;
|
||||||
|
if (!serial) {
|
||||||
|
serialno = adb_get_serialno();
|
||||||
|
if (!serialno) {
|
||||||
|
LOGE("Could not get device serial");
|
||||||
|
goto aoa_hid_end;
|
||||||
|
}
|
||||||
|
serial = serialno;
|
||||||
|
LOGI("Device serial: %s", serial);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool ok = sc_aoa_init(&s->aoa, serial);
|
||||||
|
free(serialno);
|
||||||
|
if (!ok) {
|
||||||
goto aoa_hid_end;
|
goto aoa_hid_end;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue