我正在开发一个android cordova应用程序。我不知道在我的应用中实施Google Analytics的事件跟踪。请帮帮我。
答案 0 :(得分:1)
这种方式有效:
$(document).bind("mobileinit", function() {
window.analytics.startTrackerWithId('UA-XXXX-YY');
});
$(document).on("pageshow", "#examplePage", function(event) {
window.analytics.trackView('Example Page Screen Title');
});
我希望这可以帮到你!