Android and iOS: Not sending data to Segment

  1. SDK Version: (42.0.3), Expo-Analystics-Segment (10.2.1)
  2. Platforms(Android/iOS/web/all): all

Hi,

I add initialization and identification code in my Expo app. However, it won’t send data to Segment. I hard-coded the keys so I can rule out the environment.

Here’s how I initialize in App.tsx:

Segment.initialize({
     androidWriteKey: SEGMENT_KEY_ANDROID,
    iosWriteKey: SEGMENT_KEY_IOS,
});

I then call the identify in my login hook.

Segment.identify({id: user.id});

I see zero identify data being sent though. I’m not sure if something is wrong with my configuration

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.