In Cordoba, how do I install a different package name for the Windows platform?

I know that now Cordoba resolves package names for a specific platform. We can do this in config.xml for Android and iOS through the android-packageName and ios-CFBundleIdentifier attributes in the tag. But I can not find a similar attribute for the name of the Windows 8.1 / 10 package. Is there one for windows? If so, how can I indicate it? Thanks.

+6
source share
1 answer

As stated in the Config.xml documentation for version 6.0.0, there is a WindowsStoreIdentityName attribute that takes the store identifier generated from the Windows Dev Center as the value. e.g. 12345developer.SUPERCOOLAPP

 <preference name="WindowsStoreIdentityName" value="12345developer.SUPERCOOLAPP"/> 
+2
source

All Articles