The following function from the class DownloadManager
adds a file to the downloads database system, so it could appear in Downloads App (and thus become eligible for management by the Downloads App).
addCompletedDownload(String title, String description,
boolean isMediaScannerScannable, String mimeType,
String path, long length, boolean showNotification)
The problem I'm facing is that this function was added in API 12. So I'm looking for an alternative to this function that will work properly for atleast API 10. Thanks in Advance!! :)
There's one more point I forgot to mention that I'm not actually downloading any file.