Only the last added plugin is working. Suppose I reverse the below angulartics plugin then only splunk works. Is there any way to capture data simultaneously for these two analytics providers?
app = angular.module('MyApp', [
'angulartics',
'angulartics.splunk',
'angulartics.google.analytics'
]);
I modify the angulartics.js to accept array and modify registerPageTrack and registerPageEvent. Sample modified registerPageTrack function. This is not the final code as i am working on it.