-
Notifications
You must be signed in to change notification settings - Fork 22
Open
Description
Hi, I am using this package and after first deployment of my app I saw Start and Install events in GA. After a couple of app updates I only see install- and start events of the first version of the app. If I add the App Version dimension I don't see any start and install events for the newer app version.
My config:
// initialize google analytics
GoogleAnalytics.Current.Config.TrackingId = "[MyTrackingID]";
GoogleAnalytics.Current.Config.AppId = "[MyAppID]";
GoogleAnalytics.Current.Config.AppName = "[MyAppName]";
//GoogleAnalytics.Current.Config.Debug = true;
//For tracking install and starts app, you can change default event properties:
GoogleAnalytics.Current.Config.ServiceCategoryName = "App";
GoogleAnalytics.Current.Config.InstallMessage = "Install";
GoogleAnalytics.Current.Config.StartMessage = "Start";
GoogleAnalytics.Current.Config.ReportUncaughtExceptions = true;
GoogleAnalytics.Current.Config.AppVersion = $"{Device.RuntimePlatform} {CrossVersion.Current.Version}";
// GoogleAnalytics.Current.Config.AppInstallerId = "someID"; // for custom installer id
GoogleAnalytics.Current.InitTracker();
All other events do work for the the newer app versions. Am I missing something?
Metadata
Metadata
Assignees
Labels
No labels