You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Im new to this and have 0 idea how this works, what I know is this plugin will have a popup on iOS devices asking
You want to be track or not.
But my question is Im using admob and unity ads or photon plugins
How can that plugins detect wether or not the user agree to track you or not
For example: Google ads will not show not relevant ads if you click do not track
Is is automatic?
How does it work
The text was updated successfully, but these errors were encountered:
You Just to do this to complete the ATT function required for ios auditing.
C# Code:
if UNITY_IOS
// Check the user's consent status.
// If the status is undetermined, display the request request:
if (ATTrackingStatusBinding.GetAuthorizationTrackingStatus() == ATTrackingStatusBinding.AuthorizationTrackingStatus.NOT_DETERMINED) {
ATTrackingStatusBinding.RequestAuthorizationTracking();
}
#endif
You need to check the status of ATTrackingStatusBinding.GetAuthorizationTrackingStatus() to determine if the user is allowed or not, but Apple only allows to ask the user once, until you uninstall and reinstall otherwise you can't continue the request
And Import this package
And in the xcode info options add Key:
NSUserTrackingUsageDescription
Value:Your data will be used to provide you a better and personalized ad experience.
This way you can normally pop up the ios system popup and ask the user if they are allowed to request IDFA for tracking purposes. As we all know, obtaining IDFA can increase the advertising cpm and ATT is a compliance function required by Apple, and there is no additional effect.
About you want to know how it works, you can google IDFA to find some information
Hi,
Im new to this and have 0 idea how this works, what I know is this plugin will have a popup on iOS devices asking
You want to be track or not.
But my question is Im using admob and unity ads or photon plugins
How can that plugins detect wether or not the user agree to track you or not
For example: Google ads will not show not relevant ads if you click do not track
Is is automatic?
How does it work
The text was updated successfully, but these errors were encountered: