For some reason this line just exits and quits.
No error, no response.
Android works just fine with the same message
FCMClient client = new FCMClient("TOKENKEY");
var firebaseMessage = new Message()
{
To = recipient,
Notification = iosNotification,
Data = message.Data
};
try
{
var result = await client.SendMessageAsync(firebaseMessage);
}catch(Exception e)
{
}
For some reason this line just exits and quits. No error, no response.
Android works just fine with the same message