Questions tagged [apptrackingtransparency]
66 questions
3
votes
1 answer
How to integrate "Tracking Transparency" and "EU Consent" in Google Admob in Swift/iOS?
I'm trying to implement Admob with "Tracking Transparency" and "EU Consent" in Swift.
My app is for iOS 14.0+ devices, so I've followed the instructions on https://developers.google.com/admob/ios/ios14. To be compliant with EU consent for GDPR, I…

Ghostw4lk
- 127
- 1
- 11
3
votes
2 answers
How to handle pre-permission prompt for App Tracking Authorization?
I'm preparing for iOS 14 App Tracking Transparency enforcement in early 2021 and I've created a pre-permission prompt before calling
ATTrackingManager.requestTrackingAuthorization(completionHandler: { status in
//do something based on…

David Villegas
- 458
- 3
- 18
3
votes
0 answers
Is merely requesting app transparency permissions sufficient for ensuring google mobile ads are iOS14 compliant?
We have an app that shows Google banner, interstitial and reward ads. In iOS14 there are new requirements for App Tracking. This impacts Google Mobile ads as described here: https://developers.google.com/admob/ios/ios14. We've implemented all their…

tomblah
- 791
- 3
- 9
- 21
2
votes
0 answers
Unity AppTrackingTRansparency showing on Iphone but NOT Ipad
I'm trying to publish my first IOS app and running into an issue with AppTrackingTransparency showing up on specifically Ipad.
IOS 16 used
Tested on Iphone 11/12/13 works fine and the AppTracking notification pops up.
On any Ipad the "Allow/Don't…

John Ward
- 21
- 1
2
votes
0 answers
App Tracking Transparency Dialog does not appear on iOS 16.1
Apple reviewer has just rejected my app since ATT request doesn't appear: "We're looking forward to completing our review, but we need more information to continue. Your app uses the AppTrackingTransparency framework, but we are unable to locate the…

Andrea Hinojosa
- 21
- 2
2
votes
2 answers
Should I request permission App Tracking Transparency for Firebase Analytics in IOS Application?
Currently I use firebase analytics for collect user events or user activities in my application. Should I request permission for App Tracking Transparency ?

Tar journey
- 379
- 4
- 13
2
votes
0 answers
Flutter: How can I hide cookies in webview_flutter (appTrackingTransparency)?
Does anyone have experience with webview_flutter & appTrackingTransparency?
The APP was rejected by Apple. The reason is that cookies appear in the webview.
When cookies appears, then appTrackingTransparency then message should open.
If…

yusuf
- 21
- 1
2
votes
1 answer
Do I need to use User Tracking if I use Admob?
I added the App Tracking Transparency dialog in my code to ask users if they allow tracking.
My app was rejected in the App Store Connect -
Your app contains NSUserTrackingUsageDescription, indicating that you will request permission to track…

SHAI
- 789
- 3
- 10
- 43
2
votes
0 answers
iOS app rejected due to AppTrackingTransparency framework used in another target
I have several targets in my project using the same codebase, but only some of them are supposed to use AppTrackingTransparency framework.
I imported it using a compiler directive:
#if TRANSPARENCY
import AppTrackingTransparency
#endif
Where…

max.marauder
- 141
- 4
2
votes
0 answers
Firebase Analytics and App Tracking Transparency
I am working on an Ionic Project. On uploading the project to Apple using Ionic Appflow build it got rejected and yells the "App Tracking Transparency Framework"
- Guideline 2.1 - Information Needed
We're looking forward to completing
our review,…

lloyd lim
- 21
- 3
2
votes
1 answer
iOS app made with Unity, how to keep using Admob without ATT prompt
I use only Admob to serve ads on my iOS apps made with Unity. I don't want to display AppTrackingTransparency prompt since most users would reply to NOT be tracked.
I would like to:
keep using Admob
not using IFDA but only the new SKADNetwork
In…

Raffaele Tasso
- 57
- 1
- 9
2
votes
1 answer
Swift - App Tracking Transparency - No Show Pop-Up due to ‘Allow Apps to Request to Track’ Greyed Out
As you now, Apple changed rules in mobile development in terms of Ads and tracking.
Apple prepared new Beta 14.5 iOS version. With this version tracking will be restricted. So, I wanted to simulate this option in my apps.
When I updated my phone to…

Emre Gürses
- 1,992
- 1
- 23
- 28
2
votes
0 answers
Will ATT affects general firebase and google analytics other than the ad tracking?
I am using latest firebase sdk in my iOS app. I want to add ATT(AppTrackingTransparency) alert in my app. If user selected "Do not track" option from alert, will it affect the firebase and google analytics too other than the ad analytics? From basic…

Ruchi
- 411
- 4
- 13
2
votes
1 answer
ATTrackingManager Returns .denied on first install with "Allow Apps to Request to Track" on
On some devices trackingAuthorizationStatus always comes back .denied, even though the "Allow Apps to Request to Track" switch is on. This means that the app can never request permission to track. In Settings > Privacy > Tracking the app does not…

naffenuf
- 21
- 2
2
votes
0 answers
Can I get idfa without calling AppTrackingTransparency frameworks using xcode12 on ios14
I use Xcode 12 to compile and use the following code to get IDFA on iOS 13.4 devices.
if ASIdentifierManager.shared().isAdvertisingTrackingEnabled {
let idfa = ASIdentifierManager.shared().advertisingIdentifier.uuidString
}
But using the same…

richard
- 21
- 3