devbutlazy
devbutlazy
### The issue isn’t with scrcpy itself — it does expose a virtual HID keyboard, but with how Android reports keyboard presence to apps. `context.getResources().getConfiguration().keyboard > 1 ` ^ only...
Yeah, for virtual HID devices like scrcpy's, `Configuration.keyboard` and `Configuration.hardKeyboardHidden` will never update because Android only flips those flags for hardware-attached keyboards recognized by the InputManager HAL layer. Scrcpy's HID...
On Android 16, Google changed parts of the DisplayManager and screen-off rendering pipeline. On some Pixel devices, when the screen turns off or goes into a low-power state, the system...
v3.3.2 works because it reverts some DisplayManager-related behavior, but the underlying issue still comes from Android 16 changes. v3.3.3 just makes the bug more visible. So yes, your case matches...