Cette conversation a été verrouillée en raison de son inactivité. Veuillez créer une nouvelle publication.
Niveau 1
Niveau 2
Se connecter à la communauté
Connectez-vous pour voir tous les badges
Cette conversation a été verrouillée en raison de son inactivité. Veuillez créer une nouvelle publication.
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
Résolu ! Accéder à la solution.
Les sujets facilitent la catégorisation du contenu de la Communauté et vous aident à retrouver le contenu le plus pertinent.
Vues
Réponses
Nombre de J’aime
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.
Vues
Réponses
Nombre de J’aime
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
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?
Vues
Réponses
Nombre de J’aime
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.
Vues
Réponses
Nombre de J’aime
Vues
Réponses
Nombre de J’aime
Hi @jane_120 ,
I was unable to reply to your private message as I hit the private message send limit. The arguments are passed from the Adobe SDK Cordova wrapper to the native Adobe SDK as a json string. Using your example, the tracking data should be sent like:
Vues
Réponses
Nombre de J’aime