I'm developing Windows Phone application.I'm finished.I need application file.How I create application file like .apk for Windows Phone ?
Asked
Active
Viewed 3,901 times
2 Answers
2
When you build your project you should get a .xap file somewhere in your projects directory. I have not worked with Windows Phone myself, so i do not know exactly where. But if it is like desktop C#, the default is bin/release, or bin/debug if it's a debug build.

EClaesson
- 1,568
- 2
- 15
- 26
1
.apk file is an Android file which contain whole application. For Windows Phone 7 equivalent is .xap file. This is just a zip file with the app and resources. Just remember to upload the release one from Documents\Visual Studio 2010\Projects\AppName\Bin\Release\
.

Lukasz Madon
- 14,664
- 14
- 64
- 108
-
Do I should zip my release folder ? It contains, dll files,xap file,xml files etc.I wanted to send application,do I should send zip file ? – mert Sep 15 '12 at 17:32
-
The .xap file is the full application. Just like Android's .apk. – EClaesson Sep 15 '12 at 17:33
-
@J.S.D.M it's already done for you. Change the extension to .zip and you will see what's inside. – Lukasz Madon Sep 15 '12 at 17:34