A library for requesting permission to track the user or their device. Examples of data used for tracking include email address, device ID, advertising ID, etc... This permission is only necessary on iOS 14 and higher; on iOS 13 and below this permission is always granted. If the "Allow Apps to Request to Track" device-level setting is off, this permission will be denied.
For more information on Apple's new App Tracking Transparency framework, please refer to their documentation.
For managed Expo projects, please follow the installation instructions in the API documentation for the latest stable release.
For bare React Native projects, you must ensure that you have installed and configured the expo
package before continuing.
expo install expo-tracking-transparency
Run npx pod-install
after installing the npm package.
Add NSUserTrackingUsageDescription
key to your Info.plist
:
<key>NSUserTrackingUsageDescription</key>
<string>Your custom usage description string here.</string>
No additional set up necessary.
Contributions are very welcome! Please refer to guidelines described in the contributing guide.