What permissions do I need to download files?
I am trying to download a file using the DownloadManager class. public void downloadFile(View view) { String urlString = "your_url_here"; try { // Get file name from the url String fileName = urlString.substring(urlString.lastIndexOf("/") + 1); // Create Download Request object DownloadManager.Request request = new DownloadManager.Request(Uri.parse((urlString))); // Display download progress and status message in notification bar request.setNotificationVisibility(Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED); // Set description to display in notification request.setDescription("Download " +