Please see here the angulartics-ga-cordova script file: https://github.com/luisfarzati/angulartics/blob/master/src/angulartics-ga-cordova.js
Line 48 expects GAPlugin.
var analytics = window.plugins && window.plugins.gaPlugin;
You need to add this script to the main index file. https://github.com/phonegap-build/GAPlugin
You can then add your Google tracking information like this.
myApp.config ($analyticsProvider, googleAnalyticsCordovaProvider) -> $analyticsProvider.firstPageview(true) googleAnalyticsCordovaProvider.trackingId = GOOGLE_ANALYTICS_ID
In addition, if you are using the phonegap assembly, you need to add the following line to the config.xml file.
<gap:plugin name="com.adobe.plugins.gaplugin" />
source share