Created
October 30, 2012 15:04
-
-
Save PanosJee/3980743 to your computer and use it in GitHub Desktop.
Initialize Bugsense
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public App() | |
{ | |
// Standard XAML initialization | |
InitializeComponent(); | |
// Phone-specific initialization | |
InitializePhoneApplication(); | |
// Language display initialization | |
InitializeLanguage(); | |
// Initialize BugSense | |
BugSenseHandler.Instance.Init(this, "YOUR_API_KEY"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I guess this has changed to BugSenseHandler.Instance.InitAndStartSession(this, "YOUR_API_KEY");