Registration of the app failed. (0x80073cf6)
I am simply Debugging my project on LocalMachine with Solution Platforms x86. Building of project is done but when it starts Deploying, it says Registration of the app failed. What I have to do to Debug it.
Seems you are having trouble with deploying UWP app on X86 platform . here are some solutions :
Had the same issue, FINALLY got to fix it. The error lies in Package.AppManifest.
<Properties>
<DisplayName>Name</DisplayName>
<PublisherDisplayName>Other Name</PublisherDisplayName>
<Logo>Assets\StoreLogo.png</Logo>
</Properties>
In the app manifest file, change the "Name" to anything else. And it'll work. That is it. If that gives you issues, try creating an empty project and take its app manifest, remove the store association key, in the manifest make sure the key points to the local temporary one.
User contributions licensed under CC BY-SA 3.0