我第一次在移动项目上使用谷歌分析,我对我现在使用的插件有一些疑问,如下:
https://github.com/KSemenenko/GoogleAnalyticsForXamarinForms
这也是我的初始化代码:
GoogleAnalytics.Current.Config.TrackingId = Keys.AnalyticsKey;
GoogleAnalytics.Current.Config.AppId = Globals.PackageName;
GoogleAnalytics.Current.Config.AppName = Globals.ApplicationName;
GoogleAnalytics.Current.Config.AppVersion = Globals.Version;
GoogleAnalytics.Current.InitTracker();
这工作得很好,我的自定义指标也是如此,但我需要访问人口统计信息以根据年龄/性别创建用户组,所以......我不知道如何使用这个插件实现该部分。
也许我需要另一个?我正在使用适用于 Android 和 iOS 的 Xamarin.Forms PCL 项目,以防万一。
希望你能帮助我,我有点迷路了。
提前致谢。