Git Product home page Git Product logo

hockeysdk-windows's Introduction

HockeySDK for Windows

The official Windows SDK for the HockeyApp service. Supports .NET Framework >= 4.0 as well as Windows Phone 8.

Introduction

The HockeySDK for Windows allows users to send crash reports right from within the application. When your app crashes, a file with basic information about the environment (device type, OS version, etc.), the reason and the stacktrace of the exception is created. The next time the user starts the app, he is asked to send the crash data to the developer. If he confirms the dialog, the crash log is sent to HockeyApp and then the file deleted from the device.

Furthermore it wraps the necessary api calls for sending feedback information to the platform.

Features & Installation via Nuget

If you want to use the nuget packages make sure you have prerelease filter activated.

Windows Phone 8

Nuget PM> Install-Package HockeySDK.WP
  • Automatic crash reporting (store and beta apps)
  • Feedback page (store and beta apps): Let your users send you feedback messages via HockeyApp
  • Automatic updates (only beta apps): Either all beta users must have developer unlocked phones or you need to either use an Enterprise Certificate to sign your beta apps. See http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj206943(v=vs.105).aspx
  • Authorization using HockeyApp logins

Windows Phone 7.5

Deprecated but still available (no Nuget package available -> use the source)

  • Crash reporting and Feedback (works for beta and store apps)

WinRT (Windows Store Apps)

Nuget PM> Install-Package HockeySDK.WinRT
  • Automatic crash reporting
  • Sending feedback to the developers

WPF

Nuget PM> Install-Package HockeySDK.WPF
  • Automatic crash reporting
  • Sending feedback to the developers

Portable lib (core component)

Nuget PM> Install-Package HockeySDK.Core

A basic API wrapper for the HockeyApp API that supports

  • Handling of crashes
  • Submitting of crashes to the HockeyApp server
  • Checking for newest app version
  • Sending feedback to the developers

Requirements

Before you integrate HockeySDK into your own app, you should add the app to HockeyApp if you haven't already. Read http://support.hockeyapp.net/kb/about-general-faq/how-to-create-a-new-app on how to do this.

Getting started with WP8

Configure the CrashHandler

  1. Open your App.xaml.cs
  • Search for the "App" constructor method and add the following line after InitializePhoneApplication() :
    CrashHandler.Instance.Configure(this, YOUR_APP_ID, RootFrame);
  • Replace YOUR_APP_ID with the App ID of your app on HockeyApp. See http://support.hockeyapp.net/kb/about-general-faq/how-to-find-the-app-id
  • Open the root page of your app (or the page in which you want to check for new crashes), for example MainPage.xaml.cs.
  • Search the constructor of the class, e.g. "MainPage", and add the following line at the bottom:
    HockeyApp.CrashHandler.Instance.HandleCrashes();
    If you want to send crashes without user interaction, use this line instead:
    HockeyApp.CrashHandler.Instance.HandleCrashes(true);
    There is also an Async Version of that method if you use async in your framework.

Now every time when an unhandled exception occurs, the exception stacktrace is logged. At the next start, you should be asked to send the crash data (or crashes are sent automatically if you configured this).

Link the feedback page

Use the following line in an apropriate place (like a click-handler for a Feedback-Button)

FeedbackManager.Instance.NavigateToFeedbackUI(NavigationService);

if you don't have access to NavigationService in your ViewModels (like when using Caliburn.Micro) you should use the following URI with your navigation framework

new Uri("/HockeyApp;component/Views/FeedbackPage.xaml", UriKind.Relative)

Use automatic updates

Use the next line right after the call to HandleCrashes() to check for updates and present them to the user automatically

UpdateManager.RunUpdateCheck(Constants.HockeyAppAppId);

Use HockeyApp Authentication

You can require the user to either identify a user by their email address or let the user authorize himself with email and password.

  • Authorization
AuthManager.Instance.AuthenticateUser(NavigationService, 
                        new Uri("/RedirectToThisPageOnSuccess.xaml", UriKind.Relative), 
                        tokenValidationPolicy: TokenValidationPolicy.EveryLogin);
  • Identification
AuthManager.Instance.AuthenticateUser(NavigationService, 
                        new Uri("/RedirectToThisPageOnSuccess.xaml", UriKind.Relative),
                        tokenValidationPolicy: TokenValidationPolicy.OnNewVersion,
                        authMode: AuthenticationMode.Identify,
                        appSecret: "yourAppSecretFromHockeyApp");
  • Logout the user
AuthManager.Instance.RemoveUserToken(); 

Getting started with Windows 8.1 (Windows RT)

  1. Open your App.xaml.cs and add the following to the OnLaunched method before the Window.Current.Activate();.
  2. Before calling any methods you have to configure the sdk via HockeyApp.HockeyClientWinRT.Instance.Configure(YOUR_APP_ID, YOUR_APP_VERSION)
  3. You can also pass in a variety of other parameters such as: HockeyApp.HockeyClientWinRT.Instance.Configure(YOUR_APP_ID, YOUR_APP_VERSION, USERNAME, CONTACT_INFO, DESCRIPTION_HANDLER, API_BASE)
  4. The parameters provided to the configure method are:
  • YOUR_APP_ID and YOUR_APP_VERSION are not optional
  • USERNAME and CONTACT_INFO is for optional submitting an logged on username and contactinfo
  • DESCRIPTION_HANDLER is a lambda for submitting additional information like an event log
  • The default API_BASE is https://rink.hockeyapp.net/api/2/ and can be overwritten
  1. After the sdk is configured, all non handled exceptions are caught by the sdk.
  2. Crashdata is send using HockeyApp.HockeyClientWinRT.Instance.SendCrashesNowAsync();
  • The user can be asked, if the crashed should be sent using HockeyApp.HockeyClientWinRT.Instance.CrashesAvailable and HockeyApp.HockeyClientWinRT.Instance.CrashesAvailableCount
  • Crashed can be deleted using HockeyApp.HockeyClientWinRT.Instance.DeleteAllCrashes(). This function is for debugging purposes. Crashes do not have to be deleted. Crashes are deleted by SendCrashesNowAsync() when they are submitted to HockeyApp. Crashes are not deleted, if a web exception occurs. If the files are cirrupt (e.g. formatting), the crashes are deleted anyway.

Use Feedback

In the SDK there are no UI components for the Feedback-Informations. The SDK offers methods to load Feedbacks from the server by using feedback-tokens. Feedback-tokens must stored in the client application. Creating a new Feedback:

  1. HockeyApp.HockeyClientWinRT.Instance.CreateFeedbackThread() creates an new IFeedbackThread
  2. feedbackThread.PostFeedbackMessageAsync(MESSAGE, EMAIL, SUBJECT, USERNAME); submits a new feedback message on the selected feedback-thread.
  3. The FeedbackThread is created on the server with submitting the first feedback-message (keep that in mind when storing the feedback-token information)

Getting started with WPF

Configure the CrashHandler

  1. Open your App.xaml.cs and override the OnStartup-Method. If your are using frameworks like Caliburn.Micro use the caliburn-bootstrapper.
  2. Before calling any methods you have to configure the sdk via HockeyApp.HockeyClientWPF.Instance.Configure(YOUR_APP_ID, YOUR_APP_VERSION, USERNAME, CONTACT_INFO, DESCRIPTION_HANDLER, API_BASE)
  • YOUR_APP_ID and YOUR_APP_VERSION are not optional
  • USERNAME and CONTACT_INFO is for optional submitting an logged on username and contactinfo
  • DESCRIPTION_HANDLER is a lambda for submitting additional information like an event log
  • The default API_BASE is https://rink.hockeyapp.net/api/2/ and can be overwritten
  1. After the sdk is configured, all non handled exceptions are caught by the sdk. Exception information are written to the filesystem (%APPDATA%)
  2. Crashdata is send using
    HockeyApp.HockeyClientWPF.Instance.SendCrashesNowAsync();
  • The user can be asked, if the crashed should be sent using HockeyApp.HockeyClientWPF.Instance.CrashesAvailable and HockeyApp.HockeyClientWPF.Instance.CrashesAvailableCount
  • Crashed can be deleted using HockeyApp.HockeyClientWPF.Instance.DeleteAllCrashes(). This function is for debugging purposes. Crashes do not have to be deleted. Crashes are deleted by SendCrashesNowAsync() when they are submitted to HockeyApp. Crashes are not deleted, if a web exception occurs. If the files are cirrupt (e.g. formatting), the crashes are deleted anyway.

Use Feedback

In the WPF SDK there are no UI components for the Feedback-Informations. The SDK offers methods to load Feedbacks from the server by using feedback-tokens. Feedback-tokens must stored in the client application. Creating a new Feedback:

  1. HockeyApp.HockeyClientWPF.Instance.CreateFeedbackThread() creates an new IFeedbackThread
  2. feedbackThread.PostFeedbackMessageAsync(MESSAGE, EMAIL, SUBJECT, USERNAME); submits a new feedback message on the selected feedback-thread.
  3. The FeedbackThread is created on the server with submitting the first feedback-message (keep that in mind when storing the feedback-token information)

Using the PCL

Without using the WPF or WP-SDKs you can use the portable library directly - e.g. when implementing an own SDK.

  1. First you have to configure the portable using HockeyClient.Configure(YOUR_APP_ID,YOUR_VERSION,API_BASE,USERNAME,USER_CONTACT_INFO,DESCRIPTION) or HockeyClient.ConfigureInternal(YOUR_APP_ID,YOUR_VERSION,API_BASE,USERNAME,USER_CONTACT_INFO, USER_AGENT, SDK_NAME, SDK_VERSION, DESCRIPTION);
  2. Exception have to be caught in your own SDK. Using HockeyClient.Instance.CreateCrashData(EXCEPTION,CRASHLOGINFO); you can serialize the CrashData using ICrashData.Serialize(Stream outputstream);
  3. When you want to post all crashes to the server, HockeyClient.Deserialize(Stream inputStream) offers you a deserializing functionality.
  4. With the deserialized ICrashData you can post the crash information using ICrashData.Task SendDataAsync();

Console app

There is no special SDK for console apps, because feedback information is not used in console apps. The crashhandler has to be implemented yourself. Please find an example in Hoch.exe (HockeyUploaderConsole).

Support

If you have any questions, problems or suggestions, please contact us at [email protected].

##Release notes All release notes can be found in the project directories

hockeysdk-windows's People

Contributors

andreasmo avatar ashtom avatar holgergubbels avatar rmaclean avatar rzhw avatar sandyarmstrong avatar threescreenstudios avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.