can you explain me pls, why when i update my xamarin app , fcm token refreshed, it is not convenient and i need to synchronize it again with the server, I read in the documentation that the fcm token should not have been refreshed when the app is updated I use this FCM plugin, and i set property"resetToken" false https://github.com/CrossGeeks/FirebasePushNotificationPlugin
Is FCM token refreshed on app update?
FirebasePushNotificationManager.Initialize(this, new NotificationUserCategory[]
{
new NotificationUserCategory("message",new List<NotificationUserAction> {
new NotificationUserAction("Reply","Reply",NotificationActionType.Foreground),
new NotificationUserAction("Forward","Forward",NotificationActionType.Foreground)
}),
new NotificationUserCategory("request",new List<NotificationUserAction> {
new NotificationUserAction("Accept","Accept",NotificationActionType.Default,"check"),
new NotificationUserAction("Reject","Reject",NotificationActionType.Default,"cancel")
})
}, false);