gpt4 book ai didi

react-native - 将 Amplitude Analytics 集成到 React Native App 与 Expo

转载 作者:行者123 更新时间:2023-12-02 17:13:37 31 4
gpt4 key购买 nike

我正在尝试将 Amplitude 集成到我的 React Native 项目中。我目前仍在开发应用程序并使用 Expo。我 try catch 的第一个事件是用户登录时。

const events = {
USER_LOGGED_IN: 'USER_LOGGED_IN',
USER_CREATED_ACCOUNT: 'USER_CREATED_ACCOUNT',
};
let isInitialized = false;
const apiKey = 'xxxxxxxxxxxxxxxxxxxxxxxx';
const initialize = () => {
if (!Environment.isProduction || !apiKey) {
return;
}

Amplitude.initialize(apiKey);
isInitialized = true;
};

在我的渲染函数中(返回上方)我有这行代码:

render() {
Expo.Amplitude.logEvent('USER_LOGGED_IN')
return (

我没有看到任何事件进入振幅。使用 expo 运行我的代码时是否可以查看事件?

注意 - 此代码在我的主屏幕组件中

最佳答案

您需要publish your Expo app在 Amplitude 上查看事件,因为集成仅适用于 prod env。应用发布后,您会在 Amplitude 仪表板上看到事件,但会有一小段延迟,通常是 1 分钟。

关于react-native - 将 Amplitude Analytics 集成到 React Native App 与 Expo,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47723706/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com