Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Windows Phone Silverlight 8.1 project app submission error

I submit a test Windows Phone Silverlight Project 8.1 and get this error when submit

The package identity associated with this update doesn't match the uploaded appx: "2e740376-677c-4df8-b1af-95b72863f017"

Windows Phone 8.0 project dont meet that error. Any suggestion? Thanks

like image 874
HelloWindowsPhone Avatar asked Apr 15 '14 18:04

HelloWindowsPhone


3 Answers

I ran into the same problem, but the solution is simple - the Package identity name and Windows Publisher Name in Windows Store Dashboard must match with the values inside the uploaded xap package.

You can find these values in the Windows Store Dasboard in the App identity section:

Windows Phone Dashboard

You then need to copy and paste these values inside your Package.appxmanifest file. Note you have to open this file using text editor. These values are not editable using the UI editor:

enter image description here

like image 191
Martin Suchan Avatar answered Nov 16 '22 00:11

Martin Suchan


I had the same issue and fixed it by going to my dashboard, looking inside my in-progress app, clicking details and there I could see my package id. I copied that and pasted it inside my package manifest file.

like image 4
Eric Santos Avatar answered Nov 15 '22 23:11

Eric Santos


Exactly as the error states, your package identity doesn't match. The GUID in your WMAppManifest.xml and Package.appxmanifest have to be identical (and would be so, had you done a new project, or upgraded an existing project). The Package Identity name also have to match with the values from the Store submission process.

And if you're submitting to an existing application ID on the store, you obviously have to use the same GUID as you previously used for submitted.

like image 3
Claus Jørgensen Avatar answered Nov 16 '22 00:11

Claus Jørgensen