Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to request App Tracking Transparency authorization in Flutter for Admob Native Ads displayed on IOS 14?

With iOS 14, iPadOS 14, and tvOS 14, you will need to receive the user’s permission through the AppTrackingTransparency framework to track them or access their device’s advertising identifier. Tracking refers to the act of linking user or device data collected from your app with user or device data collected from other companies’ apps, websites, or offline properties for targeted advertising or advertising

How to request App Tracking Transparency authorization in Flutter for Admob Native Ads displayed on IOS 14? Will the app continue ads serving to the user if a user doesn't accept it?

like image 848
Jakub Klementewicz Avatar asked Oct 15 '25 04:10

Jakub Klementewicz


1 Answers

I use admob_flutter which allows you to do that by calling await Admob.requestTrackingAuthorization()

If user doesn't accept then the app will continue to serve non-personalized ads. For more details check this answer

like image 182
Morad Avatar answered Oct 19 '25 11:10

Morad