We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85537d0 commit 4d7e705Copy full SHA for 4d7e705
android/src/main/java/com/RNFetchBlob/RNFetchBlobReq.java
@@ -197,7 +197,7 @@ public void run() {
197
downloadManagerId = dm.enqueue(req);
198
androidDownloadManagerTaskTable.put(taskId, Long.valueOf(downloadManagerId));
199
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) {
200
- appCtx.registerReceiver(this, new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE), RECEIVER_NOT_EXPORTED);
+ appCtx.registerReceiver(this, new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE), RECEIVER_EXPORTED);
201
} else {
202
appCtx.registerReceiver(this, new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE));
203
}
0 commit comments