Parsa Karami
Parsa Karami

Reputation: 722

Cannot install UWP app package in release mode on windows 10 iot core

I have an application that i want publish it using application packages file and install manually i don`t want to use Microsoft Store for publishing my app. I create my application package files as you can see below

enter image description here

After that when I want to install my application package from Windows 10 iot Device Portal I didn`t got any error but when application run it stucks on splash screen page.

Upvotes: 1

Views: 499

Answers (1)

Michael Xu
Michael Xu

Reputation: 4432

Generally, if you encountered an app hung up when running, you can follow the below steps to troubleshoot.

  1. Try to deploy/debug the app from Visual Studio;
  2. Try to deploy/debug with a blank app;
  3. Set break points or trace the event log to check if there is some exception or what code causes the hung up.
  4. When debugging with Visual Studio, checked the Compile with .Net Native tool chain in Debug setting, by default, when the app runs in debug mode, it will not use Compile with .Net Native tool chain. Please see this blog.

If possible, you can share the code of your splash page.

Upvotes: 1

Related Questions