segment-integrations / analytics-ios-integration-mixpanel

The Mixpanel analytics-ios integration.
https://segment.com/docs/integrations/mixpanel
MIT License
7 stars 28 forks source link

Not able to view events in Mixpanel dashboard via analytics-ios-integration-mixpanel #55

Open sridivyaTechjini opened 3 years ago

sridivyaTechjini commented 3 years ago

Hi Team, We have integrated analytics-ios-integration-mixpanel in code via pods. used the following code in swift for setup of analytics.

    let configuration = AnalyticsConfiguration(writeKey: self.segmentKey)
    configuration.use(SEGMixpanelIntegrationFactory.instance())
    Analytics.setup(with: configuration)

=============== After setup we used this following method to send events to segment.

   Analytics.shared().track(action, properties: superDict, options: ["integrations": ["All": true, "Mixpanel": true]])
   Analytics.shared().screen("login launched")

Still we are not able to see any events in Mixpanel in LiveView. Is there anything we are missing at configuration?