Expand my Community achievements bar.

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