To exclude an application from recent applications, you must do the following:
on Activity on Manifest android:excludeFromRecents="true"
and you can disable the thumbnail of activity containing sensitive data by adding FLAG_SECURE to your window:
getWindow().addFlags(WindowManager.LayoutParams.FLAG_SECURE);
source share