rn-fetch-blob
rn-fetch-blob copied to clipboard
[Android] One of RECEIVER_EXPORTED or RECEIVER_NOT_EXPORTED
- Fix the issue for RECEIVER_EXPORTED or RECEIVER_NOT_EXPORTE for sdk version >= 34 Changed the code here:
rn-fetch-blob/android/src/main/java/com/RNFetchBlob/RNFetchBlobReq.java
As per the doc
if (Build.VERSION.SDK_INT >= 34 && appCtx.getApplicationInfo().targetSdkVersion >= 34) { appCtx.registerReceiver(this, new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE), Context.RECEIVER_EXPORTED); } else { appCtx.registerReceiver(this, new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE)); }