Reputation: 764
in android, we right click to our project, click export and get the apk.
For windows phone 8 , in visual studio 2012, how can i export my application into my desktop or somewhere ?
Anyone can help about it ?
Thanks !
Upvotes: 5
Views: 13018
Reputation: 3852
After building your application with VS, If you want to deploy your app, simply go to your Windows SDK folder for instance C:\Program Files (x86)\Microsoft SDKs\Windows Phone\v8.0
and open XapDeploy.exe under *Tools\XAP Deployment*
search for your *.xap file which is in your bin project's folder (for instance C:\Users\user\Documents\Visual Studio 2012\Projects\HTML5App1\Bin\Debug)
Upvotes: 0
Reputation: 2848
For Windows Phone you get a XAP file instead of an APK file.
The XAP in the ARM Release ie- ..\<Project Folder>\Bin\ARM\Release\
should be submitted to the Windows Store or Deployed to Device. Windows Phone Devices uses ARM based processors.
To generate the output-
To Run on Device-
\Bin\ARM\Release\
To Run on Emulator- (use AnyCPU Build Configuration)
\Bin\x86\Release\
Upvotes: 4
Reputation: 11832
Each time when you build you project - Visual Studio builds XAP file, which is actual package for uploading it to Windows Phone Store or deploying to the real device. This may help Submit your app
Upvotes: 2