Getting clipboard information in the background Works fine on android 9 But it doesn't work on android 10
Is there a way to get the clipboard information in android 10?
Thank you
clipboard = (ClipboardManager)getSystemService(CLIPBOARD_SERVICE);
clipboard.addPrimaryClipChangedListener(new ClipboardManager.OnPrimaryClipChangedListener() {
@Override
public void onPrimaryClipChanged() {
}
});