iTunes Connect upload rejected with invalid binary because of missing NSCalendarsUsageDescription

前端 未结 4 1060
北恋
北恋 2021-01-04 02:20

I\'m trying to upload an update for an existing App with XCode 8. After the upload I have received this email:

\"This app attempts to access privacy-s

4条回答
  •  甜味超标
    2021-01-04 03:05

    using Xcode V9 with build target IOS 10.0, I had to add this to the local.plist not the main app plist:

     {
         "NSCalendarsUsageDescription" = "This App needs to use your calendar";
     }
    

提交回复
热议问题