Google Drive File Downloading , DownloadManager ERROR_CANNOT_RESUME, status Failed
May be it looks Duplicate, but I did not get any answer from Stack Overflow or from Google.
I am downloading files in android app through Download Manager from google drive link, In some devices i am getting error ERROR_CANNOT_RESUME
File Link: https://docs.google.com/uc?export=download&id=1tE1Z9N2IwRnnCjBxnsCUCKTi3QzGbnYA
My Source code to download file is :
DownloadManager.Request request = new DownloadManager.Request(uri); String cookie = CookieManager.getInstance().getCookie(uri.toString()); request.setAllowedOverRoaming(false); request.setTitle(title); request.setDescription(desc); request.setVisibleInDownloadsUi(true); request.setDestinationUri(destUri); request.addRequestHeader("Cookie",cookie); DownloadManager downloadManager = (DownloadManager) this.getSystemService(Context.DOWNLOAD_SERVICE); long refid = downloadManager.enqueue(request);
Any Help will be appreciate. Thanks