You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The command to enable it is: adb shell cmd device_config put systemui clipboard_overlay_enabled true
Restarting systemui after setting the flag enables the editor
And the following command adds contextual options to the overlay (e.g. browser chip for links, maps link for addresses, etc): adb shell cmd device_config put systemui clipboard_overlay_show_actions true
This one doesn't require a systemui restart to enable
The text was updated successfully, but these errors were encountered:
Also, one thing that I forgot to add before: keeping this feature permanently enabled on devices with gms requires disabling device config sync permanently. Otherwise, gms will periodically overwrite any changes made and disable the overlay adb shell "/system/bin/device_config set_sync_disabled_for_tests persistent"
It is a new feature introduced in android 13 which adds a pop-up when something is added to the clipboard
https://blog.esper.io/android-13-deep-dive/#clipboard_editor_overlay
The command to enable it is:
adb shell cmd device_config put systemui clipboard_overlay_enabled true
Restarting systemui after setting the flag enables the editor
And the following command adds contextual options to the overlay (e.g. browser chip for links, maps link for addresses, etc):
adb shell cmd device_config put systemui clipboard_overlay_show_actions true
This one doesn't require a systemui restart to enable
The text was updated successfully, but these errors were encountered: