Expand my Community achievements bar.

Join us for the next Community Q&A Coffee Break on Tuesday April 23, 2024 with Eric Matisoff, Principal Evangelist, Analytics & Data Science, who will join us to discuss all the big news and announcements from Summit 2024!

MobileCore.dispatchEvent method is not triggering the analytics calls

Avatar

Level 2

Hi,

 

We are trying to use Adobe Branch Extension to integration Branch with Adobe to send data to branch. We did the configuration in the mobile app as per the instructions in Adobe Branch Extension given in mobile property. 

We did the coding in the below format and the data is being sent to Branch successfully. 

However the issue is now the adobe analytics calls are not being triggered with the code.

Could you please help with the issue.

 

contextData.put("customerID",<TCP#>);
Event newEvent = new Event.Builder("Login : Success",
"com.adobe.eventType.generic.track",
"com.adobe.eventSource.requestContent")
.setEventData(contextData).build();
MobileCore.dispatchEvent(newEvent, this);
0 Replies