I am developing an Android application in xamarin using GCM (Google Cloud Messaging) and Azure Notification Hub.
The problem is this: I do not know how to unsubscribe from previous tags. Even when I delete the installation again, the application continues to receive notifications for every tag that I wrote earlier.
meybe I need to implement a function:
protected override void OnUnRegistered(Context context, string registrationId)
{
throw new NotImplementedException();
}
source
share