react-native-mixpanel
react-native-mixpanel copied to clipboard
A React Native wrapper for Mixpanel tracking
i have followed all the steps and additional steps for iOS. i then followed mixpanel iOS steps for iOS and added [Mixpanel sharedInstanceWithToken:@"YOUR_API_TOKEN"]; and #import "Mixpanel/Mixpanel.h" in my app delegate.m...
When I try and create a release build using `react-native run-android --variant=release`, the app builds successfully, but then when I open it on the simulator I get: ``` E/AndroidRuntime: FATAL...
davodesign84 / react-native-mixpanel is not working fine or maybe I am doing some mistake in my code, ``` registerSuperPropertyMixPanel(option) { MixPanel.registerSuperProperties(option.properties) } registerUserOnMixPanel(peopleData) { MixPanel.createAlias(peopleData.uuid) MixPanel.identify(peopleData.uuid); MixPanel.setOnce(peopleData) this.registerSuperPropertyMixPanel({ "properties": {...
Testing with Jest and Enzyme: TypeError: Cannot read property 'sharedInstanceWithToken' of undefined
When running my test using Jest and Enzyme, I get this error: ```javascript ● Test suite failed to run TypeError: Cannot read property 'sharedInstanceWithToken' of undefined 47 | class MixPanelClient...
In our app we don't have sign up screen so when user login I used: - Mixpanel.set(userProps) - Mixpanel.createAlias(userProps.id) - Mixpanel.identity(userProps.id) then when user first time login it working fine...
Hello I have updates to release 1.2.4 for the first moment everything works fine, but after a while Android app starts cashing crash happens on **com.mixpanel.android.mpmetrics.MixpanelNotificationRouteActivity.onCreate** java.lang.RuntimeException: at android.app.ActivityThread.performLaunchActivity (ActivityThread.java:3430)...
This error has been come up on my development on android  implementation ``` const mixpanel = new MixpanelInstance(REACT_APP_MIXPANEL_ID); mixpanel.initialize().then(() => { mixpanel.track(currentScreen); }); ``` - "react-native-mixpanel": "^1.1.4", (tried to...
After creating a fresh React Native 0.63 project using the React Native CLI, I follow the instructions to install react-native-mixpanel and try and build in Xcode and I'm immediately getting...