skip to Main Content

Firebase – Android FCM push notification not launching the application on click

Im sending a notification via the FCM legacy api like so: // POST https://fcm.googleapis.com/fcm/send { "to": "<device-token>", "notification": { "title": "Test!", "body": "testing", "mutable_content": true, "sound": "Tri-tone", "click_action": "https://example.com/1234" } } Manifest: <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="cx.myapp.android"> <uses-permission android:name="android.permission.INTERNET" /> <application android:name=".MainApplication"…

VIEW QUESTION

Firebase – How to add functionality to button click in Awesome Notifications

This is how I am creating a notification using Awesome Notifications in flutter AwesomeNotifications().createNotification( content: NotificationContent( id: 1, channelKey: 'basic_channel', title: "You spent some money?", body: "We think, ₹ ${jsonObject['amount']} that was ${jsonObject['type']} to ${jsonObject['vendor']} belongs to this category: ${jsonObject['category']}",…

VIEW QUESTION

Firebase Cloud Messaging API (V1)

Trying to implement Firebase Cloud Messaging API (V1) as Cloud Messaging API (Legacy) is getting depreciated from 20/06/2024, I'm trying to generate API key for the new API v1, but there seems to be no way around it. The attached…

VIEW QUESTION
Back To Top
Search