Interested to see what happens right after you send everyone a push notification? I am!
At first I thought it wasn't possible to do Page tracking from within the MSAF + Google Analytics. But after a little bit of investigation I saw that it was always overwritten by MSAF, a small modification made it possible.
The NuGet Package I created (now updated) has new methods to track the page on the AnalyticsTracker helper-class.
public interface IAnalyticsTracker{ void Track(string category, string name); void Track(string category, string name, string label); void TrackPage(Uri pageUri); vo ...

Go to the complete details ...