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

5,494

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

Share:
5,494
Jakub Klementewicz
Author by

Jakub Klementewicz

Updated on December 26, 2022

Comments

  • Jakub Klementewicz
    Jakub Klementewicz over 1 year

    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?