I am trying to download a non-market application in Android using the DownloadManager
class.
what I am doing is the following:
DownloadManager dm = (DownloadManager) getSystemService(DOWNLOAD_SERVICE);
Request request = new Request(Uri.parse("PATH_TO_MY_APP"));
long enqueue = dm.enqueue(request);
The notification bar shows me that the app is being downloaded. But I am not able to install it or to find it on the device. What I am doing wrong?