LeBrown Jones
LeBrown Jones

Reputation: 917

Microsoft's Feedback Hub now crashes my UWP app

The Feedback Hub worked perfectly since I launched my app months ago. Suddenly I tested launching it from within my app so that I could go directly to the feedback hub page for my app and the app just crashed. So then I launched my app in debug mode and tried it again. The app simply crashes with no debug information.

Is this somehow related to me updating to the October update of Windows 10? Or maybe me extending my app's compatibility to Windows 10 1809 (17763)? I like NEVER touched the code that launches the feedback hub and so it is not my doing. This is the code:

if (Microsoft.Services.Store.Engagement.StoreServicesFeedbackLauncher.IsSupported())
{
   var feedbackLauncher = Microsoft.Services.Store.Engagement.StoreServicesFeedbackLauncher.GetDefault();
   await feedbackLauncher.LaunchAsync();
}

Upvotes: 10

Views: 283

Answers (3)

Stefan Wick  MSFT
Stefan Wick MSFT

Reputation: 13850

FEB 2019 UPDATE

This has now been fixed in version 10.0.5.

https://marketplace.visualstudio.com/items?itemName=AdMediator.MicrosoftStoreServicesSDK

Upvotes: 2

Carlo Mendoza
Carlo Mendoza

Reputation: 835

Seems this was fixed in Microsoft.Services.Store.Engagement 10.1901.28001

Upvotes: 1

ac-lap
ac-lap

Reputation: 1653

The temporary workaround is to package your app using VS 2019 preview edition, the issue does not repro here.

Upvotes: 1

Related Questions