You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Android Manifest File 3rd <receiver> should android:exported="true" for android 12 & higher
Why it is needed
What went wrong:
Execution failed for task ':app:processDebugMainManifest'.
Manifest merger failed : android:exported needs to be explicitly specified for element <receiver#com.dieam.reactnativepushnotification.modules.RNPushNotificationBootEventReceiver>. Apps targeting Android 12 and higher are required to specify an explicit value for android:exported when the corresponding component has an intent filter defined. See https://developer.android.com/guide/topics/manifest/activity-element#exported for details.
Feature Request
In Android Manifest File 3rd
<receiver>
should android:exported="true" for android 12 & higherWhy it is needed
Execution failed for task ':app:processDebugMainManifest'.
Possible implementation
Add android:exported="true" in 3rd receiver
Code sample
<receiver android:exported="true" android:name="com.dieam.reactnativepushnotification.modules.RNPushNotificationBootEventReceiver">
The text was updated successfully, but these errors were encountered: