Invalid version number sent to the Windows Phone Store. Can this be fixed?

I deployed the application to the Windows Phone Store, and the version number that was deployed is different from the version in the application manifest.

The deployed version is something like 2014.MMDD.ABC.XYZ

It should have been 1.0.0.0.

Why was the version number changed, and is it possible to change it to what should be?

+6
source share
2 answers

According to this thread, this is the expected behavior for application package packages.

Rob writes:

Application package behavior is expected. They are always version by date. The code package will have the installed version Information. If you list packages on your Windows system in \ Program Files \ WindowsApps, you will see that this applies to all application package packages. --Rob

Bill Chung writes:

if the Create Application Suite option is set to never, the version number will be normal.

+7
source

This is the version for your appxbundle, not for the application itself. The package includes resources, so only the appropriate devices are installed only on the appropriate ones. The application itself should appear with the correct version in the store.

If you look in the Program Files / WindowsApps on your desktop, you will see the same thing: many applications will have both package packages packages with package packages, and packages with timestamps.

+2
source

Source: https://habr.com/ru/post/978141/


All Articles