Analytics/GettingStarted/Windows
STEP 1: Basic Setup in 5 minutes
You can gain deep insight into your customer's behavior very quickly and with little effort using Flurry's Analytics service.
1. Download the Flurry SDK for Windows Phone
2. Reference FlurryWP8SDK.dll in your application project
3. Configure your WMAppManifest.xml to have access to networking and device information
4. Incorporate the following two lines of Flurry code:
private void Application_Launching(object sender, LaunchingEventArgs e) { FlurryWP8SDK.Api.StartSession("FLURRY_API_KEY"); // .... } private void Application_Activated(object sender, ActivatedEventArgs e) { // Restart session FlurryWP8SDK.Api.StartSession("FLURRY_API_KEY"); }
Those 4 steps will give you access to the features below (see Analytics Dictionary for details)
- Sessions
- Active Users
- New Users
- Session Length
- Frequency of Use
- Benchmarks
- Page Views
- Custom User Segments
- User Paths
- Lifecycle Metrics
- User Retention
- Version Adoption
- Cross-App Usage
- Category Interests
- Demographic Estimates
- Time of Day Reporting
- Geographic Usage
- Language Metrics
- Devices
- Carriers
- Firmware Versions
STEP 2: Understand user behavior through tracking Custom Events.
