本文介绍了在使用PushKit实现静默通知后Apple拒绝的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我们添加了无声通知,需要PushKit并在Info.plist中启用VoIP

We added silent notifications which require PushKit and enabling VoIP in the Info.plist

参见

现在我的应用被拒绝了by Apple:

Now my app is rejected by Apple:




  1. 该应用程序不是VoIP,因此它不需要VoIP功能。

  2. UIBackgroundModes 中删除​​VoIP会导致静默通知停止工作。

  1. The app is NOT a VoIP therefore it doesn't require VoIP features.
  2. Removing the VoIP from UIBackgroundModes causes the silent notifications to stop working.

任何人都知道我应该做什么?

Anyone know what I should do?

我能用什么VoIP功能添加(即使我不使用它,只是为了通过审核)?

What VoIP feature can I add (even if I dont use it, just to pass the review)?

我问过苹果公司,但是他们回复了一个自动生成的响应并且具有相同的拒绝原因。

I asked Apple but they got back with an auto generated response with the same rejection reason.

推荐答案

决议更新 -


  1. 我们在我们的应用程序中安装了第三方VoIP解决方案并实施了VoIP呼叫。很难被添加一个功能,但在我们的情况下它适合我们的应用程序。

  1. We installed a third party VoIP solution and implemented VoIP calls in our app. Awkward to be forced to add a feature but in our case it was right for our app.

在iTunesConnect提交页面的App Review Information下面Notes 我必须声明我们添加了一项新功能VoIP呼叫,其中包括测试VoIP呼叫的步骤。
这引起了评论者对新的VoIP通话功能和应用程序通过的注意。

In iTunesConnect submission page, under "App Review Information" "Notes" I had to state that we added a new feature VoIP calls, with steps to test VoIP calls.This caught the reviewers attention to the new VoIP call feature and the app passed.

当我添加时这个应用程序继续遭到拒绝。

When I added the new feature under "whats new in this version", the app continued to get rejected.

这篇关于在使用PushKit实现静默通知后Apple拒绝的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-15 20:17