☎️

iOSの審査落ちでありがちなこと①

2022/04/04に公開

Appleからの連絡

Guideline 5.1.1 - Legal - Privacy - Data Collection and Storage



We noticed that your app requests the user’s consent to access the camera and photos, but doesn’t sufficiently explain the use of the camera and photos in the purpose string.

To help users make informed decisions about how their data is used, permission request alerts need to explain and include an example of how your app will use the requested information.

Next Steps

Please revise the purpose string in your app’s Info.plist file for the camera and photos to explain why your app needs access and include an example of how the user's data will be used.

You can modify your app's Info.plist file using the property list editor in Xcode.

翻訳しました

今回は、下記のようにカメラにアクセスするための、「NSCameraUsageDescription」と写真にアクセスするための「NSPhotoLibraryUsageDescription」のstringに記載するアプリにアクセスする必要がある理由について修正する必要がありそうです。

「アプリがカメラと写真にアクセスするためのユーザーの同意を要求していることに気付きましたが、目的の文字列でのカメラと写真の使用について十分に説明していません。」

カメラと写真のアプリのInfo.plistファイルの目的文字列を修正して、アプリにアクセスする必要がある理由を説明し、ユーザーのデータがどのように使用されるかの例を含めてください。

Xcodeのプロパティリストエディタを使用して、アプリのInfo.plistファイルを変更できます。

Info.plistを編集しよう

Info.plistのstringにはアプリにアクセスする必要がある理由を記載する必要があります。

<key>NSCameraUsageDescription</key>
<string>アプリに表示・使用するための写真や動画を撮影する目的でリクエストします。</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>アプリに表示・使用するための写真や動画をライブラリから選択する目的でリクエストします。</string>

Discussion