FirebasePushNotificationPlugin
FirebasePushNotificationPlugin copied to clipboard
Add Enabled = true, Exported = false to Broadcast Recievers
:sparkles: What kind of change does this PR introduce? (Bug fix, feature, docs update...)
- Add Enabled = true, Exported = false to Broadcast recievers
:arrow_heading_down: What is the current behavior?
There is no enabled or exported flag set.
:new: What is the new behavior (if this is a feature change)?
Adds enabled and exported flag to android manifest.
:boom: Does this PR introduce a breaking change?
No
:bug: Recommendations for testing
:memo: Links to relevant issues/docs
:thinking: Checklist before submitting
- [ ] All projects build
- [ ] Follows style guide lines
- [ ] Relevant documentation was updated
- [ ] Rebased onto current develop
<receiver android:enabled="true" android:exported="false" android:name="crc6494e14b9856016c30.PushNotificationActionReceiver" />
<receiver android:enabled="true" android:exported="false" android:name="crc6494e14b9856016c30.PushNotificationDeletedReceiver" />