I am try upload my app in the apple store but i am get some erros like:
Your app uses the AppTrackingTransparency framework, but we are still unable to locate the App Tracking Transparency permission request when reviewed on iOS 15.3.1.
I am using the expo-tracking-transparency
but when I test in the simulator it works but when I try to test in testFlight the pop up does not appear
how i am using in the code:
useEffect(() => {
hideLoad();
(async () => {
const { status } = await requestTrackingPermissionsAsync();
if (status === 'granted') {
// Analytics.setAnalyticsCollectionEnabled(true);
}
})();
...
},[]);
i put this code in the index.js