Please provide all the information requested. Issues that do not follow this format are likely to stall.
Description
No permission for broadcast receiver
React Native version:
Run react-native info in your terminal and copy the results here.

Steps To Reproduce
Provide a detailed list of steps that reproduce the issue.
privatevoidreload() {
UiThreadUtil.assertOnUiThread();
// reload settings, show/hide debug overlay if required & start/stop shake detectorif (mIsDevSupportEnabled) {
// update visibility of FPS debug overlay depending on the settingsif (mDebugOverlayController != null) {
mDebugOverlayController.setFpsDebugViewVisible(mDevSettings.isFpsDebugEnabled());
}
// start shake gesture detectorif (!mIsShakeDetectorStarted) {
mShakeDetector.start(
(SensorManager) mApplicationContext.getSystemService(Context.SENSOR_SERVICE));
mIsShakeDetectorStarted = true;
}
// register reload app broadcast receiverif (!mIsReceiverRegistered) {
IntentFilterfilter = newIntentFilter();
filter.addAction(getReloadAppAction(mApplicationContext));
mApplicationContext.registerReceiver(mReloadAppBroadcastReceiver, filter); // No broadcastPermissionmIsReceiverRegistered = true;
}
... }Expected Results
Describe what you expected to happen.
Need to vertify the permission for the intentfilter before handling data in the method onReceive
Snack, code example, screenshot, or link to a repository:
Please provide all the information requested. Issues that do not follow this format are likely to stall.
Description
No permission for broadcast receiver
React Native version:
Run
react-native infoin your terminal and copy the results here.Steps To Reproduce
Provide a detailed list of steps that reproduce the issue.
Expected Results
Describe what you expected to happen.
Need to vertify the permission for the intentfilter before handling data in the method onReceive
Snack, code example, screenshot, or link to a repository: