Integrations
Mixpanel
Turn on product analytics.
- Create a project in the Mixpanel dashboard.
- Open Project settings → Access keys and copy the Project Token.
- Paste it in
.env.local:
EXPO_PUBLIC_MIXPANEL_TOKEN=your-project-token- Enable the flag in
src/config/features.ts:
mixpanel: true,Init is initializeMixpanel() in src/lib/mixpanel.ts, called from src/app/index.tsx. After sign-in, identify with the Firebase UID — never use email as the Mixpanel distinct id.