Reputation: 285
i have build ionic apache cordova app using visual studio 2015 , below is my ionic app info
Cordova CLI: 6.4.0
Ionic CLI Version: 2.1.12
Ionic App Lib Version: 2.1.7
ios-deploy version: Not installed
ios-sim version: Not installed
OS: Windows 10
Node Version: v6.9.1
Xcode version: Not installed
according to cordova documentation
Signing is required for distributing and installing Windows Store apps. This process is normally handled by Visual Studio when you deploy a package for release
here is content of my build.json
{
"windows": {
"release": {
"packageCertificateKeyFile": "res\\native\\windows\\CordovaApp.pfx"
}
}
}
and here is output of build in windows explorer
and here the content of CordovaApp.Windows10_1.0.0.1_x86_Test folder
i have enabled sideLoading in windows
but whenever i run the app i get theis error
so what is wrong with the app , and how can i distribute it without windows app store .
thanks.
Upvotes: 1
Views: 289
Reputation: 4923
Looks like you need to import this certificate on this machine, please follow these steps:
See also How to troubleshoot app package signature errors
Upvotes: 0
Reputation: 10841
what is wrong with the app , and how can i distribute it without windows app store.
From the error message there is something wrong with your certificate file. Please remake your .pfx
file following the steps by How to create an app package signing certificate.
By Cordova App there is something to notice: Please make sure the publisher name is identical with your app's publisher name(it's "[Country Code]=Apache Cordova Team" by default.).
Upvotes: 0