react-native-tracking-transparency icon indicating copy to clipboard operation
react-native-tracking-transparency copied to clipboard

Custom IDFA message not showing

Open mustapha-ghlissi opened this issue 2 years ago • 1 comments

Hi There,

I've installed this lib and well displaying the request Tracking, but the custom IDFA isn't showing up

This is my code:

import {
  getTrackingStatus,
  requestTrackingPermission,
  TrackingStatus,
} from 'react-native-tracking-transparency';


getTrackingStatus()
      .then((status) => {

        if (status !== 'denied' && status !== 'authorized') {
          this.requestPermissions();
        }
        else {
          this.setState({
            trackingState: status
          });
        }
        
      })
      .catch((e) => Alert.alert('Error', e?.toString?.() ?? e));

Any help please ! Regards

mustapha-ghlissi avatar Dec 25 '21 11:12 mustapha-ghlissi

Same issue, I get this issue IMG_0150 :

BerkeAras avatar Dec 27 '21 17:12 BerkeAras