Hi,
I am trying to submit appxupload package on store but at last when validation happens I am getting the error like :
Declared package dependency unavailable: Microsoft.VCLibs.140.00.UWPDesktop, Neutral, Universal,Universal
The app is having dependency of Visual C++ runtime package. So I have included this dependency in the package.appxmanifest file.
<Dependencies>
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.14393.0" MaxVersionTested="10.0.18362.0" />
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14393.0" MaxVersionTested="10.0.18362.0" />
<PackageDependency Name="Microsoft.VCLibs.140.00.UWPDesktop" MinVersion="14.0.27323.0" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" />
</Dependencies>
This dependency should automatically get installed from the store when user installs the app. This is the retail version of the dependency. Why the package is not getting accepted on the store. I have also validated the package using Windows app certification
kit and the overall result is passed.
I have generated the package using visual studio 2019.
System Configuration:
OS: Windows 10 pro build 18362
System Type: X64
Please suggest the changes needs to be done.
Thanks