0
0

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 5 years have passed since last update.

Xamarin.iOS でNSCalendarsUsageDescriptionの説明を書けと注意されちゃう

Posted at

Xamarinで書いたiOSアプリをAppleに提出してみたら以下の理由で審査に落ちてた。

Missing Info.plist key - This app attempts to access privacy-sensitive data without a usage description. The app's Info.plist must contain an NSCalendarsUsageDescription key with a string value explaining to the user how the app uses this data.

NSCalendarsUsageDescriptionを書けといっている。

でもこのアプリはカレンダーの情報なんてアクセスしないんだけど?

なんでだろうといろいろググってみたら、XamarinPermissionsPluginの設定を正しく行っていなかったことが判明。

Due to API usage it is required to add the Calendar permission :(

<key>NSCalendarsUsageDescription</key>
<string>Needs Calendar Permission</string>

Even though your app may not use calendar at all. I am looking into a workaround for this in the future.

カレンダーにアクセスしなくてもNSCalendarsUsageDescriptionが必要とのこと。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?