Adobe Analytics Mobile - Cordova Plugins | Community
Skip to main content
Level 3
March 1, 2022
Solved

Adobe Analytics Mobile - Cordova Plugins

  • March 1, 2022
  • 1 reply
  • 3095 views

I'm working on Adobe Analytics project for mobile which is made using Cordova.

There are few plugins which need to be added as per Adobe's document.

Can someone let me know which plugins have to be put up where and if it  follows any order ?

The adobe document mentions about the plugins but it is little confusing to understand.

 

Plugins:

cordova plugin add https://github.com/adobe/cordova-acpcore.git

cordova plugin add https://github.com/adobe/cordova-acpanalytics.git

cordova plugin add https://github.com/adobe/cordova-aepassurance.git

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Ryan_Morales

Hi @jane_120,

The Analytics network requests should be visible in the console logs after adding the Core and Analytics cordova plugins and invoking the Adobe Analytics tracking api:

ACPCore.trackAction("cordovaAction", {"cordovaKey":"cordovaValue"}, successCallback, errorCallback);
ACPCore.trackState("cordovaState", {"cordovaKey":"cordovaValue"}, successCallback, errorCallback);

The network requests are sent to your mobile app's configured Analytics server which was set on the Data Collection UI. After the network requests are made the analytics data should be visible in the configured report suite.

1 reply

Adobe Employee
March 1, 2022

Hi @jane_120,

The plugins must be added to your cordova project directory. Using our sample app located at https://github.com/adobe/cordova-acpsample as an example, the "cordova plugin add" commands would be executed from this directory:

The Adobe Analytics extension has a dependency on the Core extension only so at a minimum you would need to install the Core and Analytics cordova plugins:

cordova plugin add https://github.com/adobe/cordova-acpcore.git
cordova plugin add https://github.com/adobe/cordova-acpanalytics.git

Hope this helps.

 

Thanks,

Ryan

jane_120Author
Level 3
March 2, 2022

Hi @ryan_morales ,

 

 Thank you for your response. 

 This was helpful.

 

So I just need to install the plugins right?

Also how do I know if it's working properly?

Ryan_MoralesAdobe EmployeeAccepted solution
Adobe Employee
March 2, 2022

Hi @jane_120,

The Analytics network requests should be visible in the console logs after adding the Core and Analytics cordova plugins and invoking the Adobe Analytics tracking api:

ACPCore.trackAction("cordovaAction", {"cordovaKey":"cordovaValue"}, successCallback, errorCallback);
ACPCore.trackState("cordovaState", {"cordovaKey":"cordovaValue"}, successCallback, errorCallback);

The network requests are sent to your mobile app's configured Analytics server which was set on the Data Collection UI. After the network requests are made the analytics data should be visible in the configured report suite.