Android Notifications Priority: P2 (OPTIONAL) Implementation Guidelines - Channels : Create with unique ID (required for API 26+ ). Notifications without valid channel silently dropped . Use for backwards compatibility. - Permissions : Explicitly request on Android 13+ (API 33) . Avoid requesting system permission on app launch ; show priming dialog first to explain benefit. - Service : Implement with and for background push handling. Declare service in with intent action. - Flow : Handle notification taps in both and using . Pass data between activities via extras. - Payload : Limit notifica…