Cordova
Google Analytics in Cordova
サーチ…
Googleアナリティクスはコードなしでプラグインなし。
index.js内にanalytics関数を挿入する
function analytics(){
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','lib/analytics.js','ga');
if(window.localStorage) {
ga('create', 'UA-XXXXXXX-1', {
'storage': 'none'
, 'clientId': window.localStorage.getItem('ga_clientId') /*The tracker id obtained from local storage*/
});
ga(function(tracker) {
window.localStorage.setItem('ga_clientId', tracker.get('clientId'));
/*The tracker id for each device is different and stored in local storage*/
});
}
else {
ga('create', 'UA-XXXXXXX-1', 'auto');
}
}
下の各スクリプトタグを各HTMLページに挿入し、ページ名を変更する
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','lib/analytics.js','ga');
ga('set','checkProtocolTask',null);
/*checkProtocal Task is set to null so that GA allows tracking other than http/https */
ga('set', 'page', "Page Name");
/*Page Name is name of each html page*/
ga('send', 'pageview');
</script>
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow