3

我一直在使用 Google Analytics 来跟踪我的移动应用使用情况。我用 Rhomobile(类似于 Phonegap)构建了它,它使用 aWebView来显示 UI。我在第一页粘贴了 Google Analytics javascript 代码,它在 iOS4 到 6 和 Android 2.3 及更低版本上运行良好。但是,没有报告任何 Android 4+ 设备的统计信息。我的应用程序可以访问 Internet。有任何想法吗?Android 4 是否阻止了 Google Analytics 的这种使用?

  <script type="text/javascript">

    var _gaq = _gaq || [];
    _gaq.push(['_setAccount', 'UA-XXXXXX-Y']);
    _gaq.push(['_trackPageview']);
    (function() {
      var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
      ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
      var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
    })();

  </script>
4

1 回答 1

1

我想到了。您需要添加:

_gaq.push(['_setDomainName', 'none']);

_gaq.push(['_trackPageview']);

它至少可以在 Android 4.1.1 上运行。

于 2013-02-17T17:58:59.290 回答