mixpanel-react-native
mixpanel-react-native copied to clipboard
iOS not sending App Crash events
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
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