Search code examples
cordovawindows-store-appsvisual-studio-2015windowsvisual-studio-cordova

unsupported language in windows app submission


I Am getting the following error in windows app submission process:

enter image description here

Package acceptance validation error: The package CordovaApp.Windows_1.1.0.0_anycpu.appxupload declares one or more unsupported languages: ps.

No similar errors while publishing for Android nor iOS.

Adding project structure due to a comment request

enter image description here


Solution

  • For anyone facing the same problem.

    @Jordan Matthiesen(Thanks!) told me to check the file:

    <project folder>\bin\Windows-AnyCPU\Debug\AppxManifest.xml
    

    for the line:

    <Resource Language="ps" />
    

    It was there for some reason, but deleting it won't help as a comment in that file says:

    THIS PACKAGE MANIFEST FILE IS GENERATED BY THE BUILD PROCESS.
    
    Changes to this file will be lost when it is regenerated. To correct errors in this file, edit the source .appxmanifest file.
    
    For more information on package manifest files, see http://go.microsoft.com/fwlink/?LinkID=241727
    

    So I edited every *.appxmanifest under

    <project folder>\platforms\windows\
    

    Deleting the weird line.

    And problem was solved.