2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

CallKitを使ったアプリのリジェクト対応

Posted at

経緯

中国を含む世界各国のAppStoreにて配信しているアプリにCallKitを使った機能を実装して申請したところ、リジェクトされました。
調べたところ、どうやら2018年あたりからリジェクトされるようになったみたいです。

Apple、CallKit使用アプリが中国で取り下げ。背景には政府の存在?
アップルのCallkitが中国大陸地区で使えなくなった!

リジェクト対策

stackoverflowを参考に下記対策を行い、リプライしたところ、無事審査が通りました。

リジェクト対策
if Locale.current.regionCode != "CN" {
    // CallKitを使った処理
}
返信
We do not use CallKit features for users in China. We detect the user's region using Locale.
2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?