You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems the type definition of ApnsConfig does not contain the necessary entries for iOS Live Activities.
This is the current definition:
export interface ApnsConfig {
/**
* A collection of APNs headers. Header values must be strings.
*/
headers?: {
[key: string]: string;
};
/**
* An APNs payload to be included in the message.
*/
payload?: ApnsPayload;
/**
* Options for features provided by the FCM SDK for iOS.
*/
fcmOptions?: ApnsFcmOptions;
}
however when looking at Firebase examples such as the one here:
[REQUIRED] Step 2: Describe your environment
[REQUIRED] Step 3: Describe the problem
It seems the type definition of
ApnsConfig
does not contain the necessary entries for iOS Live Activities.This is the current definition:
however when looking at Firebase examples such as the one here:
https://firebase.google.com/docs/cloud-messaging/ios/live-activity
we see that
apns
contains alive_activity_token
attribute.The text was updated successfully, but these errors were encountered: