Guru
Guru

Reputation: 22042

Issues with your app privacy details on the App Store

We received below policy notification from AppStore in resolution center:

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

enter image description here

How to fix this issue ? Am I need to code anything related to SKAdNetworkIdentifier & App Tracking Transparancy Alert?

Upvotes: 2

Views: 1315

Answers (3)

Peter B. Kramer
Peter B. Kramer

Reputation: 16553

This may be a screw-up by Apple. They say you are using "AppLovin". Are you? If not you are in the same bag as me. I got the same notice claiming I use "Branch SDK" - but my app uses no third party software other than OpenSSL (to decode the IAP receipt).

Upvotes: 1

iPhoneProcessor
iPhoneProcessor

Reputation: 5110

First thing you need to provide privacy policy url.

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

Go to App Privacy Section in AppStore and update settings.

You need to mention what are the data Used to Track You and Data Linked to you.

enter image description here

Also update SKAdNetworkIdentifier & App Tracking Transparancy Alert:

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

Upvotes: 2

Mickey16
Mickey16

Reputation: 131

According to the AppLovin Privacy Policy, there is much more data than just the Device ID that's being collected by AppLovin SDK.

So you need to update your App Privacy (in App Store Connect) with accurate information.

And please, delete your previous answer with several images and move them to the original question (update the question).

Upvotes: 1

Related Questions