I am developing an HTML5 APP with " Intel® XDK " and when I upload it to the " Windows Dev Denter " it indicates that the language is " en-US ".
Neither in the XDK options nor in the " Dev Center " I see where to edit the languages. How can I indicate in which languages the application is available?
Edit: Another way of looking at it, XDK generates the AppxManifest.xml automatically, can I specify parameters of the AppxManifest.xml from XDK by hand?
I have solved it thanks to the indications of rsciriano
I download the appx generated by the XDK, unzip it with 7zip, include the languages in the AppxManifest.xml (in the Resources tag) and repackage it with makeappx (tool included in the visual studio community):
In the makeappx directory (in my case C:\Program Files (x86)\Windows Kits\8.1\bin\x86):
makeappx pack /d folder /p output.appx /l
Apparently Intel XDK does not allow setting the language (there are several threads in the Intel forum talking about this).
What you could try is using
MakeAppx.exe
to extract the files from the package, change theAppxManifest.xml
by hand, and repackage it. I'm still saying nonsense but by trying you don't lose anything.Another option would be to access the intermediate files you generate
Intel® XDK
and package from there.In any case, I think that it is used below
Apache Cordoba
so perhaps the problem lies there, I don't know if something could be changed at theCordoba
.You can also switch to Ionic + Visual Studio 2015 which looks great ;-)