Repeatedly failing to report calls may cause the system to stop delivering any more VoIP push notifications to your app

Repeatedly failing to report calls may cause the system to stop delivering any more VoIP push notifications to your app

Since I failed to report calls in call kit after receiving VOIP push notification
I not able to receive any VOIP push notification.
Now how I can receive VOIP push notification again?

i deleted and re install build but still not able to receive VOIP push notification
Answered by Engineer in 674314022
Either deleting and reinstalling the app, or waiting 24 hours will reset the state.

Deleting and reinstalling the app will also change the push token. Are you using the new token to send the notifications after reinstalling?

Accepted Answer
Either deleting and reinstalling the app, or waiting 24 hours will reset the state.

Deleting and reinstalling the app will also change the push token. Are you using the new token to send the notifications after reinstalling?

Thanks for your response.

yes i deleted and reinstalled the app but everytime the following function gives same token

Code Block func pushRegistry(_ registry: PKPushRegistry, didUpdate pushCredentials: PKPushCredentials, for type: PKPushType) {    let parts = pushCredentials.token.map { String(format: "%02.2hhx", $0) }    let token = parts.joined()              LogicHelper.shared.saveDeviceToken(token: token)    print("did update push credentials with token: \(token)")  }


while i am checking in sandbox. this above function give same device token. are this is a problem?

Repeatedly failing to report calls may cause the system to stop delivering any more VoIP push notifications to your app
 
 
Q