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
Back To Top
Search