处理 Apple 的 "Data use & sharing" 警告消息的推荐方法是什么?
Whats the recommended way to handle the Apple's "Data use & sharing" warning message?
我刚收到 Apple 的邮件,说明
"Data use & sharing" : Your app uses analytics software to collect and send user or device data to a third party without the user's consent. Apps must request explicit user consent and provide a clear visual indication when recording, logging, or otherwise making a record of user activity. This includes any use of the device camera, microphone, or other user inputs.
For your app to remain available on the App Store, you must remove any code, frameworks, or SDKs that collect, record or share a users data and resubmit your app for review.
请让我们知道推荐的处理方式是什么,
我的建议:
- 我们能否只删除数据跟踪(仅用于业务关键的分析和统计)第 3 方 SDK?
(或)
- 只需添加权限警报,说明我们正在收集某某权限和跟踪信息的信息?
Apple 已开始打击通过用户输入、屏幕录制等方式跟踪用户 activity 的应用程序
使您的应用程序获得批准的最佳方法是删除任何跟踪用户 activity 的代码或第三方 sdk。我今天通过删除第三方库重新提交了一个应用程序,它立即获得了批准。
但如果统计数据是您业务的关键,那么您可以从这里得到提示。
Apps must request explicit user consent and provide a clear visual indication when recording, logging, or otherwise making a record of user activity.
如果您使用自己的隐私政策,请明确说明您如何跟踪您的用户以及将如何使用用户数据。除此之外,还在您的应用程序中显示某种警告,说明用户数据将如何使用(可能通过 UIPageViewController)
我们最终保留了所有分析(MixPanel、Google、Crashlytics、Facebook、AppsFlyer)。
我们只是删除了 AppSee - 因为屏幕录制,并在 10 小时内获得批准。
我的结论是,唯一要删除的是屏幕重新编码,其余的一切都可以保持原样。
我刚收到 Apple 的邮件,说明
"Data use & sharing" : Your app uses analytics software to collect and send user or device data to a third party without the user's consent. Apps must request explicit user consent and provide a clear visual indication when recording, logging, or otherwise making a record of user activity. This includes any use of the device camera, microphone, or other user inputs.
For your app to remain available on the App Store, you must remove any code, frameworks, or SDKs that collect, record or share a users data and resubmit your app for review.
请让我们知道推荐的处理方式是什么,
我的建议:
- 我们能否只删除数据跟踪(仅用于业务关键的分析和统计)第 3 方 SDK?
(或) - 只需添加权限警报,说明我们正在收集某某权限和跟踪信息的信息?
Apple 已开始打击通过用户输入、屏幕录制等方式跟踪用户 activity 的应用程序
使您的应用程序获得批准的最佳方法是删除任何跟踪用户 activity 的代码或第三方 sdk。我今天通过删除第三方库重新提交了一个应用程序,它立即获得了批准。
但如果统计数据是您业务的关键,那么您可以从这里得到提示。
Apps must request explicit user consent and provide a clear visual indication when recording, logging, or otherwise making a record of user activity.
如果您使用自己的隐私政策,请明确说明您如何跟踪您的用户以及将如何使用用户数据。除此之外,还在您的应用程序中显示某种警告,说明用户数据将如何使用(可能通过 UIPageViewController)
我们最终保留了所有分析(MixPanel、Google、Crashlytics、Facebook、AppsFlyer)。
我们只是删除了 AppSee - 因为屏幕录制,并在 10 小时内获得批准。
我的结论是,唯一要删除的是屏幕重新编码,其余的一切都可以保持原样。