We are working on a secure app in which we share secure data with corporate users. Since the data needs to be secured and the user shouldn't be able to copy the data.
The issue is, using Samsung Knox, we can disable copy-paste for all apps and also block clipboard sharing between apps(https://docs.samsungknox.com/devref/knox-sdk/reference/com/samsung/android/knox/restriction/RestrictionPolicy.html#allowClipboardShare(boolean))
but the issue is: this is not what we want. What we need is: users should be able to copy text from our app and use it internally in our app. but the same copied data shouldn't be accessible to other apps. and text copied in another app should be accessible to our app.
mostly this app will be having web views.
Any options I can manage this? any mechanism we can implement our own copy-paste context menu or something?
Any inputs...??
Android Enterprise has a policy that can limit clipboard sharing between the work and personal profile: CrossProfileCopyPaste.
It is not exactly what you are asking for because this will allow to use the same clipboard within the work profile, but you cannot copy content from the work profile to the personal one.