Openpanel-dev / openpanel

All the goodies from both Mixpanel and Plausible combined into one tool.
https://openpanel.dev
GNU Affero General Public License v3.0
2.59k stars 84 forks source link

React Native client not working #29

Closed leikoilja closed 1 month ago

leikoilja commented 1 month ago

Tried adding OP to RN today, following documentation but am getting:

iOS Bundling failed 34ms (../../node_modules/expo-router/entry.js)
Unable to resolve "expo-application" from "../../node_modules/@openpanel/react-native/dist/index.js"

When i try using it as:

import { Openpanel } from "@openpanel/react-native";

export const op = new Openpanel({
  clientId: process.env.EXPO_PUBLIC_OPENPANEL_CLIEND_ID as string,
  clientSecret: process.env.EXPO_PUBLIC_OPENPANEL_CLIEND_SECRET as string,
});

@openpanel/react-native@0.0.9-beta expo at 51.0.10

leikoilja commented 1 month ago

aaaaand, there we go, totally overlooked that i need to install expo-application as dependency. Added it now and it works as expected :)