I use Android API v2 for downloading folder files:
***
return mDbxClient.files().listFolder(params[0]);
***
***
OutputStream outputStream = new FileOutputStream(file);
mDbxClient.files().download(metadata.getPathLower(), metadata.getRev())
.download(outputStream);
***
Files are downloading into standarr folder Downloads at device. Then my app move its (files exists at download folder < 1 sec).
But separate Android app Dropbox want add its again and show notification "Add into own Dropbox".
I use this function and can't disable it for all downloads.
How can I marked downloaded files for not showing such notify. Mark as unvisible or else?
Maybe I must mark this files before upload - metainfo "Dropboxed" for exlude dropbox parsing at future downloads?