14
Views
2
Comments
[Advertising ID Plugin] App Tracking Transparency
advertising-id-plugin
Mobile icon
Forge asset by Taka Torimoto

Hi,

I am implementing the Advertising ID Plugin to my app but can't manage to personalize the message that is shown to the user - keep getting 'undefined' value, despite having set it on the extensibility configuration as below:

"ios": [

 {

"name": "USER_TRACKING_DESCRIPTION_IOS",

 "value": "Personalized text."

 },

 {

"name": "NSUserTrackingUsageDescription",

 "value": "Personalized text."

 }

]


ATT Popup.png
2024-10-25 08-47-19
Eduardo Pires

Hi @José Leandro Miguel Neto!

You just need the "NSUserTrackingUsageDescription" and your extensibility configurations need to be something like this:

And your code can be similar to this one:


With this, the popup will show up to the user. 



2025-07-22 10-30-27
Mandar Deshpande

The solution provided by Eduardo should work since Advertising ID plugin internally reads NSUserTrackingUsageDescription but you have used USER_TRACKING_DESCRIPTION_IOS.

Since, the plugin cannot find the property, it returns undefined.

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.