Hi Team,
When I am sending the evars and props from the React Native code, the value and their counts are not reflecting on the portal.
While I send the events they are reflecting there but not getting their values.
Reference links of which I have taken the help are:
https://docs.adobe.com/content/help/en/mobile-services/universal-windows/analytics-univ-win-plat/eve...
https://aep-sdks.gitbook.io/docs/using-mobile-extensions/mobile-core/mobile-core-api-reference#track...
My code for evars and props which I tried is:
function trackActionFunc(action, payload) {
ACPCore.trackAction(action, payload);
}
trackActionFunc("Sign-in Status", { "&&evars": "eVar12:Splash" }); // function call for evars
trackActionFunc("Page Name", { "&&props": "prop1:Splash" }); //function call for props
trackActionFunc("Sign-in Status", { "&&events": "eVar12:Splash" }); //function call for events
Please suggest a solution with sample code.