Posts

Post not yet marked as solved
0 Replies
768 Views
We are using communication notification to update notification icon, but for us it's not working for xamarin project. var handle = new INPersonHandle("unique-user-id-1", INPersonHandleType.Unknown); var avatar = INImage.FromName("abc.png"); var sender = new INPerson(handle, null, "Example", avatar, null, null); var intent = new INSendMessageIntent(null,INOutgoingMessageType.Text, "Message content", null, "unique-conversation-id-1", null, sender,null); // Use the intent to initialize the interaction. var interaction = new INInteraction(intent: intent, response: null); interaction.Direction = INInteractionDirection.Incoming; interaction.DonateInteraction((error) => { // ... }); NSError error1 = null; var content = request.Content; var updatedContent = content.Update(intent, out error1); contentHandler(updatedContent);
Posted
by avartak.
Last updated
.
Post not yet marked as solved
1 Replies
940 Views
We use remote push notification with content available = 1, as per document it will wake up app, but it doesn't work properly, sometimes the app doesn't wake up. I have observed this behaviour mostly on iOS 15. We use this mechanism to send device location to our server. Why remote push notification doesn't wake up my app all the time ?
Posted
by avartak.
Last updated
.
Post not yet marked as solved
4 Replies
7.9k Views
We are using custom UITableViewCell in UITableview. While we testing our application on iOS15 beta 2 version, we observe extra space in between 2 UITableViewCells. Same UI is working fine on iOS 14 and below. Do we need to make any extra changes to handle this for iOS 15 or it will be fixed in next iOS 15 beta release?
Posted
by avartak.
Last updated
.
Post not yet marked as solved
1 Replies
1.3k Views
We have observed our Server is sending message to APNs and updating log immediately, but we are getting notification from APNs after 2-3 mins delay. Can someone help us to identify this issue with delay?
Posted
by avartak.
Last updated
.
Post not yet marked as solved
1 Replies
989 Views
Currently we are using UserNotification framework for remote notification. We are planning to use Pushkit framework and now when will receive notification from pushkit (DidReceiveIncomingPush),we will generate local notification for user with banner, alert & sound in the call back method. This is due to the fact that the notifications have to be delivered as quickly as possible, wake up the app if it is backgrounded or the phone is locked. we have following queries: 1) Will apple accept this implementation (without implementing callkit) ? 2) Blank callkit method i.e only method without logic is accepted or not?
Posted
by avartak.
Last updated
.