0
DownloadManager.Request request = new DownloadManager.Request(Uri.parse(url));
            request.setTitle(title);
            request.setDescription(context.getString(R.string.downloading_des));
            request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);

I need to show my project downloading progress

cleph
  • 1
  • 3
  • many moons ago we forked the Android download manager for this exact reason: https://github.com/novoda/download-manager – Blundell Apr 16 '22 at 19:13

0 Answers0