Hi,
I've implemented the Privacy Manifest in my app and specified my tracking domain as required, setting NSPrivacyTracking
to true and listing my domain under NSPrivacyTrackingDomains
However, on iOS17 when I decline the App Tracking Transparency (ATT) request, the specified tracking domain isn't blocked by iOS, contrary to my expectations. Shouldn't Apple's framework automatically block the domain and indicate this action in Instruments, allowing developers to verify the domain is indeed blocked when tracking is denied?
<key>NSPrivacyTracking</key>
<true/>
<key>NSPrivacyTrackingDomains</key>
<array>
<string>traking.example.com</string>
</array>