I have integrated mobile analytics in my iPhone app with the help of the Flurry analytics but I am not able to track page views.
I have used the following code in my Application Delegate and passed an instance of UINavigationController in the place of navigationController[FlurryAPI logAllPageViews:navigationController];
But while checking the Page views in the Flurry website it is showing the message like this:
You are not currently tracking Page View data.
Is there something that I have to enable in the flurry website itself?
Good that you now see your data.
On the page count: Flurry Analytics SDK just counts the number of page views. If you want to see what pages in your app the user visits, i suggest creating events for each of your screens. The user paths report in the events section of your dashboard will then give you a clear path of how your users move around in your app.
"logAllPageViews" method increments the page view count for a session based on traversing a UINavigationController or UITabBarController. If you want to track screens with screen name then just use logEvent method of FlurryAnalytics class like
[FlurryAnalytics logEvent:@"screen name"];
source (check for logAllPageVeiws and logPageView): http://support.flurry.com/sdkdocs/iOS/interface_flurry_analytics.html#adb7d3bd888a40343269c53f65acf7720
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With