JonnyBritish
JonnyBritish

Reputation: 31

Error submitting to WindowsPhone 8 App Store: We weren't able to save your info. Try again. Error code: 0x80040803

I have seen this error reported a few times when submitting apps to the Windows Phone 8 store

We weren't able to save your info. Try again. Error code: 0x80040803.

Upvotes: 0

Views: 438

Answers (1)

JonnyBritish
JonnyBritish

Reputation: 31

The problem in my case was a duplicate entry in the WMAppManifest.xml file

The error is caused by a duplicate capability entry in the WMAppManifest.xml file:

<Capability Name="ID_CAP_ISV_CAMERA" />
<Capability Name="ID_CAP_SENSORS" />
<Capability Name="ID_CAP_ISV_CAMERA" />

After correcting this the problem is resolved and the app was successfully submitted. Hope this helps someone developing for Windows Phone 8

Upvotes: 3

Related Questions