Sitata / titanium-google-analytics

Google analytics for Appcelerator Titanium
MIT License
92 stars 47 forks source link

trackScreen might not work anymore on iOS? Need confirmations #25

Closed bitfabrikken closed 9 years ago

bitfabrikken commented 9 years ago

Looking at the Analytics for an app, I have a suspicion that tracking might no longer work on iOS.

3 days ago I upload a new version of my app, 2.38, to App Store, and so far I can't see anything from that app version in my Analytics panel. It's only showing statistics for old versions of the app.

If I start up my app, it should also show my session in the real-time overview in Analytics, but again, only old versions of the app appear here.

Is anyone else seeing the same issues with tracking?

Titanium SDK 3.5.0.GA, OS X Yosemite 10.10.2, Xcode 6.1.1 and analytics.google module 3.0.2

bitfabrikken commented 9 years ago

Nevermind, I was using the old way to track.

Wrong:

tracker.trackScreen("Home Screen");

Correct:

tracker.trackScreen({
  screenName: "Home Screen"
});