iOS 13 中的 VoIP 来电时本地蜂窝电话呼叫失败
Native cellular call fails on VoIP incoming call in iOS 13
我在 iOS 中使用 VoIP PushKit 实现了用于音频和视频通话的 CallKit,它在 iOS 12 和之前的版本中工作正常,在 [=36 中也正常工作=] 13 和 13.1.
但它在两种情况下失败了:
1) 我们的应用程序处于前台状态。当手机通话 运行 并且收到 VoIP 推送时,Call kit 来电屏幕会显示 5 - 10 秒,然后手机和 VOIP 通话都失败并显示警报 "Call Failed"。
2) 我们的应用程序处于后台或已终止状态。当手机呼叫 运行 并且接收到 VoIP 推送时,手机和 VOIP 呼叫都会失败并显示警报 "Call Failed"。这次没有来电显示 UI。
我在这里展示我的代码:
- (void)registerAppForVOIPPush {
PKPushRegistry *pushRegistry = [[PKPushRegistry alloc] initWithQueue:dispatch_get_main_queue()];
pushRegistry.delegate = self;
pushRegistry.desiredPushTypes = [NSSet setWithObject:PKPushTypeVoIP];
}
然后推送代表
#pragma mark PKPushRegistryDelegate ----
- (void)pushRegistry:(PKPushRegistry *)registry didUpdatePushCredentials: (PKPushCredentials *)credentials forType:(NSString *)type {
NSString *newToken = [self hexadecimalStringFromData:credentials.token];
//Make a note of this token to a server to send VOIP for a particular device
NSLog(@"VOIP token ::: %@", newToken);
_voipToken = newToken;
}
- (void)pushRegistry:(PKPushRegistry *)registry didReceiveIncomingPushWithPayload:(PKPushPayload *)payload forType:(PKPushType)type {
//available(iOS, introduced: 8.0, deprecated: 11.0)
[self pushRegistryDidReceivedPushWithPayload:payload forType:type withCompletionHandler:NULL];
}
- (void)pushRegistry:(PKPushRegistry *)registry didReceiveIncomingPushWithPayload:(PKPushPayload *)payload forType:(PKPushType)type withCompletionHandler:(void (^)(void))completion {
//available(iOS 11.0, *)
[self pushRegistryDidReceivedPushWithPayload:payload forType:type withCompletionHandler:completion];
}
- (void)pushRegistryDidReceivedPushWithPayload:(PKPushPayload *)payload forType:(PKPushType)type withCompletionHandler:(void (^)(void))completion {
//Call kit configration
CXProviderConfiguration *providerConfig = [[CXProviderConfiguration alloc] initWithLocalizedName:@"my app Call"];
providerConfig.supportsVideo = NO;
providerConfig.maximumCallGroups = 1;
providerConfig.maximumCallsPerCallGroup = 1;
providerConfig.supportedHandleTypes = [[NSSet alloc] initWithObjects:[NSNumber numberWithInteger:CXHandleTypeGeneric], nil];
providerConfig.iconTemplateImageData = UIImagePNGRepresentation([UIImage imageNamed:@"IconMask"]);
CXProvider *provider = [[CXProvider alloc] initWithConfiguration:providerConfig];
[provider setDelegate:self queue:nil];
//generate token
NSUUID *callbackUUIDToken = [NSUUID UUID];
//Display callkit
NSString *uniqueIdentifier = @"Max test";
CXCallUpdate *update = [[CXCallUpdate alloc] init];
update.remoteHandle = [[CXHandle alloc] initWithType:CXHandleTypeGeneric value:uniqueIdentifier];
update.supportsGrouping = FALSE;
update.supportsUngrouping = FALSE;
update.supportsHolding = FALSE;
update.localizedCallerName = uniqueIdentifier;
update.hasVideo = NO;
[provider reportNewIncomingCallWithUUID:callbackUUIDToken update:update completion:^(NSError * _Nullable error) {
NSLog(@"reportNewIncomingCallWithUUID error: %@",error);
}];
if (completion) {
dispatch_async(dispatch_get_main_queue(), ^{
completion();
});
}
}
我已经完美实现了CXProvider委托方法
- (void)provider:(CXProvider *)provider performAnswerCallAction:(CXAnswerCallAction *)action{
[action fulfill];
}
- (void)provider:(CXProvider *)provider performEndCallAction:(CXEndCallAction *)action{
[action fulfill];
}
并且还管理其他委托方法来管理调用和一切,它在所有条件下都运行良好。
我已经用 Google Duo、Whatsapp 和 FaceTime 等其他应用程序检查了这两种情况,它正确显示了 CallKit 而没有失败,但在我的应用程序中它失败了。我不知道它在哪里失败了。
因此,对于 iOS 13 及更高版本,我有这 2 个问题。任何帮助将不胜感激。
谢谢
这可能是一个 iOS 13 错误,如果您还没有这样做,您应该向 Apple 报告。
我认为像 Whatapp(以及我开发的那个)这样的应用程序运行正常的原因是我们针对 iOS 12 SDK 构建应用程序。我们这样做是因为 iOS 13 中引入的 VoIP 推送通知的局限性。因此,您可以尝试解决这个问题——至少在 2020 年 4 月之前——针对 iOS 12 SDK 进行构建。希望 Apple 我们能尽快解决这个问题。
@Max 我遇到了与您在 iOS 版本 13.0 到 13.2.0 中遇到的相同问题。
许多开发者已将此问题报告给 Apple。上周发布的最新 iOS 版本 (iOS 13.2.2) 已解决此错误。因此,现在您可以开始使用最新的 SDK 和 xCode 11.2.1.
,而不是从旧的 SDK 构建
我在 iOS 中使用 VoIP PushKit 实现了用于音频和视频通话的 CallKit,它在 iOS 12 和之前的版本中工作正常,在 [=36 中也正常工作=] 13 和 13.1.
但它在两种情况下失败了:
1) 我们的应用程序处于前台状态。当手机通话 运行 并且收到 VoIP 推送时,Call kit 来电屏幕会显示 5 - 10 秒,然后手机和 VOIP 通话都失败并显示警报 "Call Failed"。
2) 我们的应用程序处于后台或已终止状态。当手机呼叫 运行 并且接收到 VoIP 推送时,手机和 VOIP 呼叫都会失败并显示警报 "Call Failed"。这次没有来电显示 UI。
我在这里展示我的代码:
- (void)registerAppForVOIPPush {
PKPushRegistry *pushRegistry = [[PKPushRegistry alloc] initWithQueue:dispatch_get_main_queue()];
pushRegistry.delegate = self;
pushRegistry.desiredPushTypes = [NSSet setWithObject:PKPushTypeVoIP];
}
然后推送代表
#pragma mark PKPushRegistryDelegate ----
- (void)pushRegistry:(PKPushRegistry *)registry didUpdatePushCredentials: (PKPushCredentials *)credentials forType:(NSString *)type {
NSString *newToken = [self hexadecimalStringFromData:credentials.token];
//Make a note of this token to a server to send VOIP for a particular device
NSLog(@"VOIP token ::: %@", newToken);
_voipToken = newToken;
}
- (void)pushRegistry:(PKPushRegistry *)registry didReceiveIncomingPushWithPayload:(PKPushPayload *)payload forType:(PKPushType)type {
//available(iOS, introduced: 8.0, deprecated: 11.0)
[self pushRegistryDidReceivedPushWithPayload:payload forType:type withCompletionHandler:NULL];
}
- (void)pushRegistry:(PKPushRegistry *)registry didReceiveIncomingPushWithPayload:(PKPushPayload *)payload forType:(PKPushType)type withCompletionHandler:(void (^)(void))completion {
//available(iOS 11.0, *)
[self pushRegistryDidReceivedPushWithPayload:payload forType:type withCompletionHandler:completion];
}
- (void)pushRegistryDidReceivedPushWithPayload:(PKPushPayload *)payload forType:(PKPushType)type withCompletionHandler:(void (^)(void))completion {
//Call kit configration
CXProviderConfiguration *providerConfig = [[CXProviderConfiguration alloc] initWithLocalizedName:@"my app Call"];
providerConfig.supportsVideo = NO;
providerConfig.maximumCallGroups = 1;
providerConfig.maximumCallsPerCallGroup = 1;
providerConfig.supportedHandleTypes = [[NSSet alloc] initWithObjects:[NSNumber numberWithInteger:CXHandleTypeGeneric], nil];
providerConfig.iconTemplateImageData = UIImagePNGRepresentation([UIImage imageNamed:@"IconMask"]);
CXProvider *provider = [[CXProvider alloc] initWithConfiguration:providerConfig];
[provider setDelegate:self queue:nil];
//generate token
NSUUID *callbackUUIDToken = [NSUUID UUID];
//Display callkit
NSString *uniqueIdentifier = @"Max test";
CXCallUpdate *update = [[CXCallUpdate alloc] init];
update.remoteHandle = [[CXHandle alloc] initWithType:CXHandleTypeGeneric value:uniqueIdentifier];
update.supportsGrouping = FALSE;
update.supportsUngrouping = FALSE;
update.supportsHolding = FALSE;
update.localizedCallerName = uniqueIdentifier;
update.hasVideo = NO;
[provider reportNewIncomingCallWithUUID:callbackUUIDToken update:update completion:^(NSError * _Nullable error) {
NSLog(@"reportNewIncomingCallWithUUID error: %@",error);
}];
if (completion) {
dispatch_async(dispatch_get_main_queue(), ^{
completion();
});
}
}
我已经完美实现了CXProvider委托方法
- (void)provider:(CXProvider *)provider performAnswerCallAction:(CXAnswerCallAction *)action{
[action fulfill];
}
- (void)provider:(CXProvider *)provider performEndCallAction:(CXEndCallAction *)action{
[action fulfill];
}
并且还管理其他委托方法来管理调用和一切,它在所有条件下都运行良好。
我已经用 Google Duo、Whatsapp 和 FaceTime 等其他应用程序检查了这两种情况,它正确显示了 CallKit 而没有失败,但在我的应用程序中它失败了。我不知道它在哪里失败了。
因此,对于 iOS 13 及更高版本,我有这 2 个问题。任何帮助将不胜感激。 谢谢
这可能是一个 iOS 13 错误,如果您还没有这样做,您应该向 Apple 报告。
我认为像 Whatapp(以及我开发的那个)这样的应用程序运行正常的原因是我们针对 iOS 12 SDK 构建应用程序。我们这样做是因为 iOS 13 中引入的 VoIP 推送通知的局限性。因此,您可以尝试解决这个问题——至少在 2020 年 4 月之前——针对 iOS 12 SDK 进行构建。希望 Apple 我们能尽快解决这个问题。
@Max 我遇到了与您在 iOS 版本 13.0 到 13.2.0 中遇到的相同问题。
许多开发者已将此问题报告给 Apple。上周发布的最新 iOS 版本 (iOS 13.2.2) 已解决此错误。因此,现在您可以开始使用最新的 SDK 和 xCode 11.2.1.
,而不是从旧的 SDK 构建