cordovavisual-studio-2015uwpvisual-studio-cordovaappxmanifest

UWP Cordova - Not able to run the app after creation of appxupload build


Currently working on cordova windows 10 UWP mobile apps. Initially it was working fabulously. After all the changes, tried to create appxupload build. It got created successfully. But same time I had configured my app with windows app store. After this change, my appxmanifest file got changed. It got replaced with app store details.

enter image description here

With previous changes it was working, but after creation of appxupload file everything got changed. Now I can see only splash screen. After splash screen I am getting white screen.

enter image description here

Accordingly I changed start page path also based on package name. Still I am getting same issue. May I know is there any way I can run the app on device successfully with appxmanifest file changes.

Thanks in advance.


Solution

  • Hey I resolved the issue doing below changes..

    I added below things in config.xml

    <preference name="WindowsStoreIdentityName" value="12225TOTO42.3355241V9C2T6" />
    <preference name="WindowsStorePublisherName" value="CN=9985D2C8-IUI5-4272-TOTO-EBR6FE26877A" />
    

    After that I ran below command in Command Prompt

    cordova build windows --release --prod --arch="arm"
    

    That's it. It solved my issue.