windows phone - Publisher attribute of the Identity element in AppxManifest (Cordova) -
i trying publish windows phone cordova application on windows store. build application with:
cordova build widows --release
when upload, getting error
package acceptance validation error: publisher attribute of identity element in app manifest of file cordovaapp.xxx.appx cn=$username$, doesn't match publisher id: cn=xxxxxxxxxxxxx.
i tried associate app defining next line config.xml:
<preference name="windows-publisher-id" value="-appcn-" />
but there stil:
<identity name="xxx" publisher="cn=$username$" version="1.0.0.0" processorarchitecture="neutral" />
in appxmanifest.xml after build. how can specify cn value? (i not using visual studio)
try changing publisher
attribute of identity
tag in /platforms/windows/package.phone.appxmanifest
edit: there better solution (see cadesalaberry's answer below)
Comments
Post a Comment