996 questions
0 votes
1 answer
165 views
RecyclerView Not Updating with Ketch Library Downloads in Android
I am using the Ketch library for managing downloads in my Android app. The issue is that while downloads are started successfully and appear in the notification bar, they do not update in the ...
1 vote
0 answers
413 views
DownloadManager throws SecurityException (Android 14)
I am seeing this stack trace in Crashlytics: Fatal Exception: java.lang.SecurityException: Unsupported path /storage/emulated/0/Download at android.os.Parcel.createExceptionOrNull(Parcel.java:3023) ...
1 vote
0 answers
463 views
Android download manager - unsupported file type message on notification tap
My code to enqueue download: await AndroidDownloadManager.enqueue(downloadUrl: url, downloadPath: destDir!, fileName: fileName, headers: headers, notificationVisibility: NotificationVisibility....
0 votes
1 answer
306 views
Not receive DOWNLOAD_COMPLETE broadcast when download complete
I create an app with an update feature, my app is now able to detect the update and download it but when the download complete, DownloadReceiver is not triggered and I don't know why I have a class ...
0 votes
0 answers
83 views
Downloading Web Page with Download Manager
I am Using Download Manager for Downloading Webpage URLS, which may have extension .txt/.pdf...Some Http Links like "www.abc.com" cant be opened once downloaded The Following is the code I ...
0 votes
1 answer
2k views
Unable to download pdf from link in Android Using downloadManager
I am encountering difficulties while attempting to download a PDF file in my Android app using the DownloadManager. I have provided my implementation below: class AndroidDownloader(private val context:...
0 votes
1 answer
131 views
handle multiple items downloading services. (Kotlin) [closed]
to implement a download manager for handling multiple items downloads in my app. I'm looking to develop an app that can download various file types such as PDFs, images, and videos using URLs. I plan ...
0 votes
1 answer
415 views
Downloading a Zip file from the internet "Android Studio"
I hope you are good and thank you for reading this. I started developing in Android Studio a few days ago, I am trying to download a zip file from the internet, after hours of researches I have not ...
1 vote
0 answers
212 views
How to download a file using file name
I have a list of records which I am getting from the API call, on the each item of that list I have a file name with other data. That file name is something like f354jklja.png or kioad87943kjkjd.pdf. ...
1 vote
1 answer
586 views
Android Download manager is delayed and always unsuccessfull
So, I'm trying to implement a download pdf feature for my app. Here is the code where i start the download manager. val document = documents[i] val request = DownloadManager.Request(Uri.parse("...
1 vote
0 answers
82 views
Android 12 Downloadmanager freezes
DownloadManager suddenly freezes and stops working for 15-20 min. Downloads remain queued. The weird thing is that it only happens on Android 12 on both physical device and emulator. But on Andorid 13 ...
0 votes
0 answers
90 views
Android Studio DownloadManager deletes File after download
I download Files with the DownloadManager and actually these files are deleted after downloading. My search didn't get any results (as far as I can see) so I hope to get some help here. ...
0 votes
1 answer
222 views
All my .pdf files are being saved as .pdf.htlml in Android
I have tried installing other browser but still no help. I have finally reset the phone. And also tried after installing firefox. But issue still remains. I have reviewed the setting. Cleared data of ...
1 vote
1 answer
192 views
How show ProgressBar and Completed listener in DownloadManager android
In my application I want use DownloadManager for download Image from server. I write below codes and I can download image and show into gallery app. But I want show ProgressBar when downloading and ...
1 vote
1 answer
186 views
File stuck in pending until WiFi is turned on
I'm using Download Manager to download a file Ton an Android 10 device that is connected to a private APN on cellular network which leads to a private server. *The server is not reachable from regular ...