如何在 iPhone 和 Android 的 Titanium 中实现 Google Analytic?
Posted
技术标签:
【中文标题】如何在 iPhone 和 Android 的 Titanium 中实现 Google Analytic?【英文标题】:How to implement Google Analytic in Titanium for iPhone and Android? 【发布时间】:2014-08-18 07:58:05 【问题描述】:我想在我的钛应用程序中实现谷歌分析服务。我试过MattTuttle/titanium-google-analytics module 并使用了这段代码:
var GA = require('analytics.google');
var tracker = GA.getTracker("UA-XXXXXXX-X");
tracker.trackEvent(
category: "my event category",
action: "clicked",
label: "how many (c)licks?",
value: 3
);
我用我的新应用程序密钥替换了密钥,但是当我将我的应用程序用于多语言时,应用程序大部分时间都会崩溃。
请建议我如何在我的钛应用程序中实现谷歌分析。
【问题讨论】:
应用程序崩溃时收到什么错误消息? 结帐this 链接。它会解决你的问题。 错误类似于可能是这个 link 将帮助您在钛中实施 Google 分析。 或 试试这个:https://developer.appcelerator.com/question/153996/how-to-use-google-analytics-module-in-titanium-android-app
如果它不起作用,请告诉我。 谢谢
【讨论】:
以上是关于如何在 iPhone 和 Android 的 Titanium 中实现 Google Analytic?的主要内容,如果未能解决你的问题,请参考以下文章
如何从 Ti.Geolocation.getCurrentPosition 访问/存储纬度和经度?
如何在 Android 和 iPhone 的移动应用程序中实施推荐计划
如何在 iPhone 和 Android 的 Titanium 中实现 Google Analytic?