79829729

Date: 2025-11-25 13:00:46
Score: 1.5
Natty:
Report link

Aren't you supposed to add a receiver for a notification? Update your Android Manifest.

// Source - https://stackoverflow.com/a/79829404
// Posted by Bhavin Parghi
// Retrieved 2025-11-25, License - CC BY-SA 4.0

<receiver
    android:name="com.dexterous.flutterlocalnotifications.ScheduledNotificationReceiver"
    android:exported="false" />

<receiver
    android:name="com.dexterous.flutterlocalnotifications.ScheduledNotificationBootReceiver"
    android:exported="false">
    <intent-filter>
        <action android:name="android.intent.action.BOOT_COMPLETED" />
        <action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
    </intent-filter>
</receiver>
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Cayden Joseph