mixpanel-react-native icon indicating copy to clipboard operation
mixpanel-react-native copied to clipboard

iOS not sending App Crash events

Open arelstone opened this issue 1 year ago • 0 comments

I'd like to do a report showing the top crashes. I am only getting App Crashed events from Android phones. I would expect to get events from iOS too, because most of our customer base is on iPhones

Screenshot 2024-03-18 at 12 11 58

We've created a MixpanelProvider with this useEffect

const client = useMemo(() => new Mixpanel(token, true), [token]);
  useEffect(() => {
    log.debug('init()');
    client.init();
    client.setServerURL('https://api-eu.mixpanel.com');
  }, [client]);

My questions are: Does iOS allow for auto tracking app crashes?

if so

What am I missing, since I don't get any App Crashed events from any iPhones

arelstone avatar Mar 18 '24 11:03 arelstone