Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error submission app update: packages Windows 8.1 (desktop and Phone bundle) + Windows 8.0


I try to send an update for my app to Windows Store by Windows Dev Center Dashboard, this update contains 3 packages: 2 for Windows 8.1 (Desktop and Phone) as a bundle and 1 for Windows 8.0 that does not support any bundle.

Before the new dashboard the package for Windows 8.0 was accepted too in this configuration... not now and it reports this error:

A previous submission for this app was released with a Windows Phone 8.1 appxbundle. Subsequent submissions must continue to contain a Windows Phone 8.1 appxbundle.

but it isn’t a Phone package and for Windows 8.0 I can’t make a bundle! there is a solution? with the old dashboard that worked great.

Best regards,
Claudio

New dashboard bundle error

like image 296
Claudio Cayo Castagnetti Avatar asked Aug 25 '15 09:08

Claudio Cayo Castagnetti


1 Answers

Not sure if it is applicable here. But in my case I've got the same error when updating UWP version of the application on the store where I had UWP, WP81 and W8.1 apps. The error was signaling the fact that the existent store UWP package was build with as a bundle but the new package was not.

So the solution was to replace in .csproj the <AppxBundle>Never</AppxBundle> with <AppxBundle>Always</AppxBundle>. If you publish from Visual studio directly you can do that from UI as described here.

like image 166
cosmo Avatar answered Oct 10 '22 21:10

cosmo