0

I have a UWP windows 10 application and I have used MVVM in the project. All the ViewModels are present in the portable project.

How do I configure the hockey app in portable for UWP windows 10 application? Thanks in advance.

Ankit Kumar
  • 397
  • 2
  • 11
  • 21

1 Answers1

0

How do I configure the hockey app in portable for UWP windows 10 application?

Add to Jet Chopper's suggestion, the HocyeyApp is supported in UWP. This document HockeyApp for Applications on Windows has detailed steps about how to setup and use it.

The main code as about configuration as the following:

HockeyClient.Current.Configure("App id on dashboard");
Xie Steven
  • 8,544
  • 1
  • 9
  • 23
  • Thanks. Somehow the hockeyapp core dll was missing in the portable project. After fixing the issue it working fine. – Ankit Kumar Jan 06 '17 at 08:10