How to disable Clipboard editor overlay Android Emulator API 33?

2.2k views Asked by At

How can i disable Clipboard editor overlay, that is enabled by default in Android Emulator API 33?. It is very annoying while debugging apps.It always popup over my debugging apps, and i have to close this every time to do something in my debugging app.

enter image description here

2

There are 2 answers

7
lucky1928 On BEST ANSWER

To disable clipboard overlay:

adb shell device_config put systemui clipboard_overlay_enabled false
adb reboot

We need reboot since SystemUI read the config too earlier.

2
Saddam Azy On

This answer might not be helpful but I also getting annoyed by this. I can't click bottom nav without sliding clipboard pop up. But you can disable clipboard sharing access from emulator setting.

  1. Start Android Studio
  2. Start the AVD
  3. Click the three dots, down on the sidebar
  4. Click Settings Toggle the switch "Enable clipboard sharing".

Source solution