6.0.0 • Published 24 days ago

@capacitor-firebase/messaging v6.0.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
24 days ago

@capacitor-firebase/messaging

Unofficial Capacitor plugin for Firebase Cloud Messaging.^1

Guides

Installation

npm install @capacitor-firebase/messaging firebase
npx cap sync

Add Firebase to your project if you haven't already (Android / iOS / Web).

Android

Variables

This plugin will use the following project variables (defined in your app’s variables.gradle file):

  • $firebaseMessagingVersion version of com.google.firebase:firebase-messaging (default: 23.1.2)

Push Notification Icon

The Push Notification icon with the appropriate name should be added to the android/app/src/main/AndroidManifest.xml file:

<meta-data android:name="com.google.firebase.messaging.default_notification_icon" android:resource="@mipmap/push_icon_name" />

If no icon is specified, Android uses the application icon, but the push icon should be white pixels on a transparent background. Since the application icon does not usually look like this, it shows a white square or circle. Therefore, it is recommended to provide a separate icon for push notifications.

Prevent auto initialization

When a registration token is generated, the library uploads the identifier and configuration data to Firebase. If you prefer to prevent token autogeneration, disable Analytics collection and FCM auto initialization by adding these metadata values to the android/app/src/main/AndroidManifest.xml file:

<meta-data
    android:name="firebase_messaging_auto_init_enabled"
    android:value="false" />
<meta-data
    android:name="firebase_analytics_collection_enabled"
    android:value="false" />

iOS

Important: Make sure that no other Capacitor Push Notification plugin is installed (see here).

See Prerequisites and complete the prerequisites first.

See Upload the APNS Certificate or Key to Firebase and follow the instructions to upload the APNS Certificate or APNS Auth Key to Firebase.

If you have difficulties with the instructions, you can also look at the corresponding sections of this guide.

Add the following to your app's AppDelegate.swift:

func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
  NotificationCenter.default.post(name: .capacitorDidRegisterForRemoteNotifications, object: deviceToken)
}

func application(_ application: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: Error) {
  NotificationCenter.default.post(name: .capacitorDidFailToRegisterForRemoteNotifications, object: error)
}

func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
    NotificationCenter.default.post(name: Notification.Name.init("didReceiveRemoteNotification"), object: completionHandler, userInfo: userInfo)
}

Attention: If you use this plugin in combination with @capacitor-firebase/authentication, then add the following to your app's AppDelegate.swift:

+ import FirebaseAuth

func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool {
+    if Auth.auth().canHandle(url) {
+      return true
+    }
    return ApplicationDelegateProxy.shared.application(app, open: url, options: options)
}

Prevent auto initialization

When a registration token is generated, the library uploads the identifier and configuration data to Firebase. If you prefer to prevent token autogeneration, disable FCM auto initialization by editing your ios/App/App/Info.plist and set FirebaseMessagingAutoInitEnabled key to NO.

Web

  1. See Configure Web Credentials with FCM and follow the instructions to configure your web credentials correctly.
  2. Add a firebase-messaging-sw.js file to the root of your domain. This file can be empty if you do not want to receive push notifications in the background. See Setting notification options in the service worker for more information.

Configuration

On iOS you can configure the way the push notifications are displayed when the app is in foreground.

PropTypeDescriptionDefaultSince
presentationOptionsPresentationOption[]This is an array of strings you can combine. Possible values in the array are: - badge: badge count on the app icon is updated (default value) - sound: the device will ring/vibrate when the push notification is received - alert: the push notification is displayed in a native dialog - criticalAlert: the push notification is displayed in a native dialog and bypasses the mute switch An empty array can be provided if none of the options are desired. Only available for iOS."badge", "sound", "alert"0.2.2

Examples

In capacitor.config.json:

{
  "plugins": {
    "FirebaseMessaging": {
      "presentationOptions": ["badge", "sound", "alert"]
    }
  }
}

In capacitor.config.ts:

/// <reference types="@capacitor-firebase/messaging" />

import { CapacitorConfig } from '@capacitor/cli';

const config: CapacitorConfig = {
  plugins: {
    FirebaseMessaging: {
      presentationOptions: ["badge", "sound", "alert"],
    },
  },
};

export default config;

Demo

A working example can be found here: robingenz/capacitor-firebase-plugin-demo

Starter Templates

The following starter templates are available:

Usage

import { FirebaseMessaging } from '@capacitor-firebase/messaging';

const checkPermissions = async () => {
  const result = await FirebaseMessaging.checkPermissions();
  return result.receive;
};

const requestPermissions = async () => {
  const result = await FirebaseMessaging.requestPermissions();
  return result.receive;
};

const getToken = async () => {
  const result = await FirebaseMessaging.getToken();
  return result.token;
};

const deleteToken = async () => {
  await FirebaseMessaging.deleteToken();
};

const getDeliveredNotifications = async () => {
  const result = await FirebaseMessaging.getDeliveredNotifications();
  return result.notifications;
};

const removeDeliveredNotifications = async () => {
  await FirebaseMessaging.removeDeliveredNotifications({
    ids: ['798dfhliblqew89pzads'],
  });
};

const removeAllDeliveredNotifications = async () => {
  await FirebaseMessaging.removeAllDeliveredNotifications();
};

const subscribeToTopic = async () => {
  await FirebaseMessaging.subscribeToTopic({ topic: 'news' });
};

const unsubscribeFromTopic = async () => {
  await FirebaseMessaging.unsubscribeFromTopic({ topic: 'news' });
};

const addTokenReceivedListener = async () => {
  await FirebaseMessaging.addListener('tokenReceived', event => {
    console.log('tokenReceived', { event });
  });
};

const addNotificationReceivedListener = async () => {
  await FirebaseMessaging.addListener('notificationReceived', event => {
    console.log('notificationReceived', { event });
  });
};

const addNotificationActionPerformedListener = async () => {
  await FirebaseMessaging.addListener('notificationActionPerformed', event => {
    console.log('notificationActionPerformed', { event });
  });
};

const removeAllListeners = async () => {
  await FirebaseMessaging.removeAllListeners();
};

API

checkPermissions()

checkPermissions() => Promise<PermissionStatus>

Check permission to receive push notifications.

On Android, this method only needs to be called on Android 13+.

Returns: Promise<PermissionStatus>

Since: 0.2.2


requestPermissions()

requestPermissions() => Promise<PermissionStatus>

Request permission to receive push notifications.

On Android, this method only needs to be called on Android 13+.

Returns: Promise<PermissionStatus>

Since: 0.2.2


isSupported()

isSupported() => Promise<IsSupportedResult>

Checks if all required APIs exist.

Always returns true on Android and iOS.

Returns: Promise<IsSupportedResult>

Since: 0.3.1


getToken(...)

getToken(options?: GetTokenOptions | undefined) => Promise<GetTokenResult>

Register the app to receive push notifications. Returns a FCM token that can be used to send push messages to that Messaging instance.

This method also re-enables FCM auto-init.

ParamType
optionsGetTokenOptions

Returns: Promise<GetTokenResult>

Since: 0.2.2


deleteToken()

deleteToken() => Promise<void>

Delete the FCM token and unregister the app to stop receiving push notifications. Can be called, for example, when a user signs out.

Since: 0.2.2


getDeliveredNotifications()

getDeliveredNotifications() => Promise<GetDeliveredNotificationsResult>

Get a list of notifications that are visible on the notifications screen.

Returns: Promise<GetDeliveredNotificationsResult>

Since: 0.2.2


removeDeliveredNotifications(...)

removeDeliveredNotifications(options: RemoveDeliveredNotificationsOptions) => Promise<void>

Remove specific notifications from the notifications screen.

ParamType
optionsRemoveDeliveredNotificationsOptions

Since: 0.2.2


removeAllDeliveredNotifications()

removeAllDeliveredNotifications() => Promise<void>

Remove all notifications from the notifications screen.

Since: 0.2.2


subscribeToTopic(...)

subscribeToTopic(options: SubscribeToTopicOptions) => Promise<void>

Subscribes to topic in the background.

Only available for Android and iOS.

ParamType
optionsSubscribeToTopicOptions

Since: 0.2.2


unsubscribeFromTopic(...)

unsubscribeFromTopic(options: UnsubscribeFromTopicOptions) => Promise<void>

Unsubscribes from topic in the background.

Only available for Android and iOS.

ParamType
optionsUnsubscribeFromTopicOptions

Since: 0.2.2


createChannel(...)

createChannel(options: CreateChannelOptions) => Promise<void>

Create a notification channel.

Only available for Android (SDK 26+).

ParamType
optionsChannel

Since: 1.4.0


deleteChannel(...)

deleteChannel(options: DeleteChannelOptions) => Promise<void>

Delete a notification channel.

Only available for Android (SDK 26+).

ParamType
optionsDeleteChannelOptions

Since: 1.4.0


listChannels()

listChannels() => Promise<ListChannelsResult>

List the available notification channels.

Only available for Android (SDK 26+).

Returns: Promise<ListChannelsResult>

Since: 1.4.0


addListener('tokenReceived', ...)

addListener(eventName: 'tokenReceived', listenerFunc: TokenReceivedListener) => Promise<PluginListenerHandle>

Called when a new FCM token is received.

Only available for Android and iOS.

ParamType
eventName'tokenReceived'
listenerFuncTokenReceivedListener

Returns: Promise<PluginListenerHandle>

Since: 0.2.2


addListener('notificationReceived', ...)

addListener(eventName: 'notificationReceived', listenerFunc: NotificationReceivedListener) => Promise<PluginListenerHandle>

Called when a new push notification is received.

On Android, this listener is called for every push notification if the app is in the foreground. If the app is in the background, then this listener is only called on data push notifications. See https://firebase.google.com/docs/cloud-messaging/android/receive#handling_messages for more information.

On iOS, this listener is called for every push notification if the app is in the foreground. If the app is in the background, then this listener is only called for silent push notifications (messages with the content-available key). See https://developer.apple.com/library/archive/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/PayloadKeyReference.html for more information.

ParamType
eventName'notificationReceived'
listenerFuncNotificationReceivedListener

Returns: Promise<PluginListenerHandle>

Since: 0.2.2


addListener('notificationActionPerformed', ...)

addListener(eventName: 'notificationActionPerformed', listenerFunc: NotificationActionPerformedListener) => Promise<PluginListenerHandle>

Called when a new push notification action is performed.

Only available for Android and iOS.

ParamType
eventName'notificationActionPerformed'
listenerFuncNotificationActionPerformedListener

Returns: Promise<PluginListenerHandle>

Since: 0.2.2


removeAllListeners()

removeAllListeners() => Promise<void>

Remove all listeners for this plugin.

Since: 0.2.2


Interfaces

PermissionStatus

PropTypeSince
receivePermissionState0.2.2

IsSupportedResult

PropTypeSince
isSupportedboolean0.3.1

GetTokenResult

PropTypeSince
tokenstring0.2.2

GetTokenOptions

PropTypeDescription
vapidKeystringYour VAPID public key, which is required to retrieve the current registration token on the web. Only available for Web.
serviceWorkerRegistrationServiceWorkerRegistrationThe service worker registration for receiving push messaging. If the registration is not provided explicitly, you need to have a firebase-messaging-sw.js at your root location. Only available for Web.

GetDeliveredNotificationsResult

PropTypeSince
notificationsNotification[]0.2.2

Notification

PropTypeDescriptionSince
bodystringThe notification payload.0.2.2
clickActionstringThe action to be performed on the user opening the notification. Only available for Android.0.2.2
dataunknownAny additional data that was included in the push notification payload.0.2.2
idstringThe notification identifier.0.2.2
imagestringThe URL of an image that is downloaded on the device and displayed in the notification. Only available for Web.0.2.2
linkstringDeep link from the notification. Only available for Android.0.2.2
subtitlestringThe notification subtitle. Only available for iOS.0.2.2
tagstringThe notification string identifier. Only available for Android.0.4.0
titlestringThe notification title.0.2.2

RemoveDeliveredNotificationsOptions

PropTypeSince
notificationsNotification[]0.4.0

SubscribeToTopicOptions

PropTypeDescriptionSince
topicstringThe name of the topic to subscribe.0.2.2

UnsubscribeFromTopicOptions

PropTypeDescriptionSince
topicstringThe name of the topic to unsubscribe from.0.2.2

Channel

PropTypeDescriptionSince
descriptionstringThe description of this channel (presented to the user).1.4.0
idstringThe channel identifier.1.4.0
importanceImportanceThe level of interruption for notifications posted to this channel.1.4.0
lightColorstringThe light color for notifications posted to this channel. Only supported if lights are enabled on this channel and the device supports it. Supported color formats are #RRGGBB and #RRGGBBAA.1.4.0
lightsbooleanWhether notifications posted to this channel should display notification lights, on devices that support it.1.4.0
namestringThe name of this channel (presented to the user).1.4.0
soundstringThe sound that should be played for notifications posted to this channel. Notification channels with an importance of at least 3 should have a sound. The file name of a sound file should be specified relative to the android app res/raw directory.1.4.0
vibrationbooleanWhether notifications posted to this channel should vibrate.1.4.0
visibilityVisibilityThe visibility of notifications posted to this channel. This setting is for whether notifications posted to this channel appear on the lockscreen or not, and if so, whether they appear in a redacted form.1.4.0

DeleteChannelOptions

PropTypeDescriptionSince
idstringThe channel identifier.1.4.0

ListChannelsResult

PropType
channelsChannel[]

PluginListenerHandle

PropType
remove() => Promise<void>

TokenReceivedEvent

PropTypeSince
tokenstring0.2.2

NotificationReceivedEvent

PropTypeSince
notificationNotification0.2.2

NotificationActionPerformedEvent

PropTypeDescriptionSince
actionIdstringThe action performed on the notification.0.2.2
inputValuestringText entered on the notification action. Only available for iOS.0.2.2
notificationNotificationThe notification in which the action was performed.0.2.2

Type Aliases

PermissionState

'prompt' | 'prompt-with-rationale' | 'granted' | 'denied'

CreateChannelOptions

Channel

TokenReceivedListener

Callback to receive the token received event.

(event: TokenReceivedEvent): void

NotificationReceivedListener

Callback to receive the notification received event.

(event: NotificationReceivedEvent): void

NotificationActionPerformedListener

Callback to receive the notification action performed event.

(event: NotificationActionPerformedEvent): void

Enums

Importance

MembersValueSince
Min11.4.0
Low21.4.0
Default31.4.0
High41.4.0
Max51.4.0

Visibility

MembersValueSince
Secret-11.4.0
Private01.4.0
Public11.4.0

Changelog

See CHANGELOG.md.

License

See LICENSE.

^1: This project is not affiliated with, endorsed by, sponsored by, or approved by Google LLC or any of their affiliates or subsidiaries.