I\'m trying to use DownloadManager
in a Service
class of mine:
DownloadManager downloadManager = (DownloadManager) getSystemSer
You need the following permission in the manifest as per documentation:
<uses-permission
android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" />
but also need to add that permission to rn-fetch-blob's manifest that is not given in it.
<uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" />