ATT compliance Flutter(iOS)
To ensure compliance with Apple privacy guidelines and regulations, we don't track data if users don't allow it.
Use AppTrackingTransparency framework to request users' consent
Add
NSUserTrackingUsageDescription
key and related value inInfo.plist
.Present an app-tracking authorization request to the user. The sample codes are:
For example, the users will see the following pop-up window for the first time.
It's not required to call ATTrackingManager.requestTrackingAuthorization
in application(:, didFinishLaunchingWithOptions:) -> Bool
For more details, please refer to the following links:
Last updated