App Store 上的应用程序隐私详细信息存在问题

Issues with your app privacy details on the App Store

我们在解决中心收到来自 AppStore 的以下政策通知:

Hello, 

When you submitted your app, you answered questions about your app's privacy practices in App Store Connect. There are possible issues with the information you gave. You indicated that your app does not collect or track device or user data. However, your app integrates code from or communicates with third-parties that appear to collect and track this data, including, but not limited to, AppLovin. 

You need to provide accurate information about your app’s privacy practices, including the practices of all the third-party partners your app interfaces with, like ad networks, analytics tools, and SDKs. Doing so will help you avoid rejections on future submissions. If you don't know what data your third-party partners collect or if they track your users, please contact them or refer to the documentation they've made available. 

We have not rejected your submission, but this message will remain in Resolution Center for your reference. You do not need to reply after making the appropriate changes. We appreciate your efforts to comply with our guidelines and look forward to reviewing your future submissions to the App Store.

Learn more about app privacy details on the App Store and how to update privacy information in App Store Connect.

Best regards,

App Store Review

如何解决这个问题?我是否需要编写与 SKAdNetworkIdentifier 和应用跟踪透明度警报相关的任何代码?

根据 AppLovin Privacy Policy,AppLovin SDK 收集的数据远不止设备 ID。

因此您需要使用准确的信息更新您的应用程序隐私(在 App Store Connect 中)。

另外,请删除您之前的回答和多张图片,并将它们移至原始问题(更新问题)。

首先您需要提供隐私政策 url。

示例:https://docs.google.com/document/d/1JpNOfUb6mzwG-q5gQQn_oRveKlxvTrQKXjACtc2j47Y/edit?usp=sharing

前往 AppStore 中的应用程序隐私部分并更新设置。

您需要说明用于跟踪您的数据和链接到您的数据是什么。

同时更新 SKAdNetworkIdentifier 和应用跟踪透明度警报:

- (void)requestIDFA
{
    if (@available(iOS 14.0, *))
    {
        [ATTrackingManager requestTrackingAuthorizationWithCompletionHandler:^(ATTrackingManagerAuthorizationStatus status) {
            
            [self loadAllAds];
 
        }];
    }
    else
    {
        [self loadAllAds];
    }
}

这可能是 Apple 搞砸了。他们说您正在使用“AppLovin”。你是?如果不是,你和我在同一个包里。我收到了同样的通知,声称我使用“Branch SDK”——但我的应用程序除了 OpenSSL(解码 IAP 收据)之外没有使用第三方软件。