David Wells
David Wells
I managed to spin up https://github.com/expo/create-react-native-app & test it out. I see what you are saying, it appears react native is loading the browser version not the serverside implementation. ...
In the meantime, as this gets resolved for the [serverside plugins](https://getanalytics.io/plugins/), you can inline your plugins & make API calls to remote analytics tools like this: ```js import React from...
Hey @gafner, I'm still trying to figure out how React-native resolves it's modules. By default, it's loading the browser version of the analytics library and the browser version of plugins....
@jgcmarins Do cookies work in React Native? If yes, then they are already in use there 😃 Under the hood, analytics tries to use these 3 mechanisms in this order:...
Mmmm not sure how exactly you'd type this. Suggestions welcome.
Ah yeah switch to Pnpm use pnpm install instead
Oh wow nice! Let me know if ya'll need any help Thanks for the contributions! ❤️
Having a beacon option would be cool. I was exploring this with the aws-pinpoint plugin https://github.com/DavidWells/analytics/blob/master/packages/analytics-plugin-aws-pinpoint/src/pinpoint/index.js#L88 It's tricky to make this work across the board for all plugins though. Each...
Aha maybe we can add as a setting to google analytics plugin https://developers.google.com/analytics/devguides/collection/analyticsjs/sending-hits Looks like we need something like: ```js // Updates the tracker to use `navigator.sendBeacon` if available. if...
Hey @totalhack thanks for the link. That's pretty interesting 😃. Love that call before ready approach. What's the use case you are looking to solve? Also how are you loading...