December 21, 2011 at 2:25 AM
—
dsoltesz
Its always good practice to have proper error handling in your application and a way for users to report the errror. Recently I learned of a new service called http://www.bugsense.com. BugSense is a library made for mobile developers. Get the context of the errors, track errors in specific app version or filter errors by device. There was Internet connectivity at the time of the crash? BugSense collects all the information the mobile developer needs and create reports for you to easliy be able to track and resolve application errors. Using BugSense in your Windows Phone 7.x application is super easy and its FREE! Start with installing the BugSense library for Windows Phone. Use NuGet by typing “Install-Package BugSense.WP7” to NuGet Console or Search for BugSense using the NuGet Package Manager UI or download the BugSense-WP7-v0.9.zip unzip and add a reference to BugSense.dll in your Windows Phone Project.
Then, all you need to do is go inside you App.xaml.cs file and add the following code inside the constructor: Don't forget to use your Project API key you'll find in your dashboard!
public App()
{
BugSenseHandler.Instance.Init(this, "Your_API_Key");
// You app's code
}
I have in corporated bugsense into my nightly prayer application and its working great!!!