App Tracking Transparency

RSS for tag

Request user permission to access user data for tracking a user or device.

Posts under App Tracking Transparency tag

44 Posts
Sort by:

Post

Replies

Boosts

Views

Activity

Appstore not aproving our App Tracking Transparency
We have an app that checks user GPS locations to complete Work Orders and send them to a server for user visualization. We already implemented the App Tracking code in our project following the documentations and guides found on internet. The problem is that App Store is telling us that the app Tracking code is not implemented the way it is intended to be. The message from the appstore we get when we try to upload the app: "Hello, Thank you for your message. It would be appropriate to refer to the available documentation to confirm App Tracking Transparency has been correctly implemented. In particular, review the specifications for the requestTrackingAuthorization(completionHandler:) type method, make any necessary adjustments, and test your app on a device running iOS 15." Our code: Version currentVersion = new Version(Device.systemVersion); Version ios14 = new Version("14.5"); if (ATTrackingStatusBinding.GetAuthorizationTrackingStatus() == ATTrackingStatusBinding.AuthorizationTrackingStatus.NOT_DETERMINED && currentVersion >= ios14) { ATTrackingStatusBinding.RequestAuthorizationTracking(AuthorizationTrackingReceived); sentTrackingAuthorizationRequest?.Invoke(); yield return new WaitUntil(() => ATTrackingStatusBinding.GetAuthorizationTrackingStatus() != ATTrackingStatusBinding.AuthorizationTrackingStatus.NOT_DETERMINED); if(ATTrackingStatusBinding.GetAuthorizationTrackingStatus() == ATTrackingStatusBinding.AuthorizationTrackingStatus.AUTHORIZED) { StartCoroutine(CheckGPSRoutine()); } } We need help to solve this urgent issue and know how to correcly implement App Tracking so we can upload the app to appstore. Thanks!
1
0
1.3k
Jul ’23
Regarding App Tracking Transparency popup and GDPR consent Promt
Hi Team, One of our client app got rejected, stating that "We noticed your app includes a GDPR prompt and an App Tracking Transparency permission request, but they are implemented in a way that might confuse the user." Attached is the screenshot of the mail we got from apple. But according to the user privacy and data use article , on this link https://developer.apple.com/app-store/user-privacy-and-data-use/#permission-to-track Attached is the screenshot , it's mentioned App Tracking Transparency takes precedence on GDPR consent popup. but in the mail we received that we should not show the App Tracking Transparency popup if in GDPR Consent form we have rejected the permission. Please make it clear what action items need to be done. since statement in email we received and in article mentioned above. it's conflicting. Please tell clear action items for this.
1
2
2.6k
Sep ’23
ATTrackingManager.requestTrackingAuthorization stopped working in iOS 15
I'm currently in the process of submitting in the App Store, and then after I tested my build in iOS15, it stopped displaying the prompt for ATT, I also tried it to other lower versions and it worked. Is there any way to fix this? if #available(iOS 14, *) { ATTrackingManager.requestTrackingAuthorization { status in }} I also checked the current app store build version, and it also doesn't work. Some people are currently experiencing this kind of issue in Reddit. https://www.reddit.com/r/iOSProgramming/comments/pt41jz/att_prompt_not_showing_on_ios_15/
15
0
26k
May ’24