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",
}
]
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.
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.