Inside our android webview app, we are trying to paste the copied content from another app eg (notes) using navigator.clibpboard.readtext function. It works just fine in mobile chrome, but in android webview, which is again based on chromium engine, it just does not work.
We have given all permission in android manifest
<uses-permission android:name="android.permission.READ_CLIPBOARD" />
<uses-permission android:name="android.permission.WRITE_CLIPBOARD" />
<uses-permission android:name="android.webkit.PermissionRequest" />
Stackoverflow has couple of threads on how to copy text clipboard inside android webview, but not on pasting the text from navigator.clipboard, so that's why had to raise this issue. Any ideas on how to solve this.