"This build is missing export compliance information."
"This build is missing export compliance information."
在使用 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
在我的应用程序中有两个按钮:
第一个使用 UIApplication.shared.openURL(<reviewURL>)
重定向到我的应用程序的 AppStore 页面
第二个使用 UIActivityViewController
将 link 分享到我的应用程序 AppStore 页面。
我的应用程序也使用 AdMob,因此嵌入了 GoogleAds 框架。它发出 HTTPS 请求。
那么,我应该回答什么:"Does my app uses encryption" - 是或否?
您需要将此添加到 plist 才能从 iTunes 中删除该警报
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
答案是否定的
在使用 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
在我的应用程序中有两个按钮:
第一个使用
UIApplication.shared.openURL(<reviewURL>)
重定向到我的应用程序的 AppStore 页面
第二个使用
UIActivityViewController
将 link 分享到我的应用程序 AppStore 页面。
我的应用程序也使用 AdMob,因此嵌入了 GoogleAds 框架。它发出 HTTPS 请求。
那么,我应该回答什么:"Does my app uses encryption" - 是或否?
您需要将此添加到 plist 才能从 iTunes 中删除该警报
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
答案是否定的