Deploying universal application results in "package could not be registered"

9

We recently upgraded to the new Visual Studio and subsequently Windows Phone 8.1 preview. However when trying to deploy to the device or Windows Phone emulators(any of them), we get this error(0x80073CF6).

Proof of error

My phone is already developer unlocked. We have been successful in deploying it and running the application once, but now for some undetermined reason, it has stopped allowing us to do this.

I am willing to provide any more information if I can.

windows-phone-8-emulator
windows-phone-8.1
asked on Stack Overflow Apr 17, 2014 by Jacob Morrison

9 Answers

11

May be you are missing icon image in your manifest file. Please look at this.

answered on Stack Overflow Apr 17, 2014 by DOTNET Team
8

There's also a possibility that the GUIDs listed in your Package.appxmanifest file don't match the ones in WMAppManifest.xml.

I had to do some changes to the first one before publishing a beta version of my app to the store and didn't update the second. Specifically

  • PhonePublisherId should match PublisherID
  • PhoneProductId should match ProductID
answered on Stack Overflow Sep 4, 2014 by Jedidja
7

It seems if you remove anything from assets folder this error occurs. In my case I had removed splash screen image from assets folder after commenting splash screen line in manifest everything is OK.

answered on Stack Overflow May 26, 2014 by sadegh saati
0

You might have checked "Shared User Certificates" in your manifest, remove it and it works.

answered on Stack Overflow Oct 13, 2014 by superuser
0

Check this answer as well. This solved my problem!

Deploy error: Package could not be registered

answered on Stack Overflow Nov 27, 2014 by Thierry
0

In my case, I needed to reset my phone for it to work.

The Deployment did always work on the emulators, but not on my phone. I've had my Application already installed from the store, as I've started to Deploy. My guess is, that the version from the store somehow did not uninstall correctly.

(I'm posting this here, because it is the first result on google)

answered on Stack Overflow Aug 10, 2015 by Florian Moser
0

For future reference: I have encountered this error a few times and it was a combination of missing icons (which you can figure out somehow), but also:

the pipe-character "|" in the app name.

It is completely legal reserve the name, and your manifest won't complain about it, but I have seen that removing this will help in solving this issue.

answered on Stack Overflow Aug 15, 2015 by Jan
0

You can remove the reference in the package.appxmanifest as well and the app will still deploy, as in:

It will work I got it.

answered on Stack Overflow Jul 1, 2016 by user3077282
0

In my case it was incorrect XML file with duplicated header:

<?xml version="1.0" encoding="utf-8" ?>
<?xml version="1.0" encoding="utf-8" ?>
<WindowsPhoneReservedAppInfo ... />
answered on Stack Overflow Jul 19, 2016 by Yury Schkatula

User contributions licensed under CC BY-SA 3.0