in an android app, im using Android's builtin download manager for downloading files. but it need External storage permission. i cant set this permission right now. is there any way to download to device RAM instead of External Storage? my problem is Permissions...
i do like this:
DownloadManager manager = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE);
manager.enqueue(request);