skip to Main Content

Android Studio – Saving a file into another app's private directory

I am using this code to download the file and I want to save the file into the another app's private data directory how I can do that `private void initiateFileDownload(String fileUrl) { DownloadManager.Request request = new DownloadManager.Request(Uri.parse(fileUrl)); request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED); request.setTitle("File…

VIEW QUESTION
Back To Top
Search