“此版本缺少出口合规信息。”

时间:2018-08-18 12:03:46

标签: ios encryption build standards-compliance

在使用 TestFlight 进行测试之前,我将构建版本部署到 iTunesConnect

不过,在应用程序图标旁边有一条消息:"This build is missing export compliance information."

展开消息:

If you are making use of ATS or making a call to HTTPS please note that you are required to submit a year-end self classification report to the US government

在我的应用中,有两个按钮:

  1. 第一个使用UIApplication.shared.openURL(<reviewURL>)

  2. 重定向到我的应用程序的AppStore页面
  3. 第二个人使用UIActivityViewController共享到我的应用程序AppStore页面的链接。

我的应用程序也使用AdMob,因此嵌入了GoogleAds框架。它发出HTTPS请求。

那么,我该怎么回答:“我的应用是否使用加密”-是或否?

1 个答案:

答案 0 :(得分:3)

您需要将此警报添加到plist中,以从iTunes中删除该警报

<key>ITSAppUsesNonExemptEncryption</key>  
<false/>

答案为否