ATT compliance (iOS)
To adhere to Apple’s privacy guidelines and regulations, we refrain from tracking any data unless users have explicitly granted permission. This limitation applies solely to Firework's internal tracking systems.
Why does this limitation exist?
As required by Apple, third-party SDKs need to include the privacy manifest file containing the following infomation:
The types of data collected by our SDK
The required reasons APIs our SDK uses
Tracking domains
With the presence of this privacy manifest, tracking requests to Firework tracking domains are prohibited by Apple unless users have explicitly granted their consent.
Utilize AppTrackingTransparency framework to obtain users’ explicit consent
To enable Firework’s internal tracking on iOS, please utilize the AppTrackingTransparency framework to obtain users’ explicit consent. The steps are as follows:
Add
NSUserTrackingUsageDescription
key and related value inInfo.plist
.Present an app-tracking authorization request to the user. The sample codes are:
func requestTrackingPermision() {
if #available(iOS 14, *) {
ATTrackingManager.requestTrackingAuthorization { status in
switch status {
case .authorized:
debugPrint("ATT permission authorized")
case .denied:
debugPrint("ATT permission denied")
case .notDetermined:
debugPrint("ATT permission notDetermined")
case .restricted:
debugPrint("ATT permission restricted")
@unknown default:
break
}
}
} else {}
}
override func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
FWFlutterSDK.initializeSDK(nil)
// The following are merely sample codes.
// You should invoke ATTrackingManager.requestTrackingAuthorization in accordance
// with your business needs, such as executing it after
// your app's home page is displayed.
DispatchQueue.main.asyncAfter(deadline: .now() + 2) {
self.requestTrackingPermision()
}
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
For example, the users will see the following pop-up window for the first time.

For more details, please refer to the following links:
Last updated
Was this helpful?