I'm working on a smartphone application, I test my application on an emulator and I cannot connect the real device to the pc I'm writing my application on. What I want is to deploy or publish application on the pc and then transfer the install package to the device and install it there, is this possible? If yes how?
Asked
Active
Viewed 320 times
2 Answers
0
I'm not sure on what platform you are working for your platform but if you are working on:
Windows phone you need Visual studio or Wp7 SDK to run your app on device or publish to market
Android, you need eclipse and Android SDK
iOS mac with xCode installed
let's say you have .apk file so you can install it in many way but the easy way is to copy and paste into the sd card of your device and with file manager install it.
but if you are on Windows phone 7 or higher you need developer unlocked device which means you need developer account and yearly 100$~.

Emrah Mehmedov
- 1,492
- 13
- 28
-
I'm working on an application for a device running on Windows CE – Mahdi Tahsildari Jan 02 '13 at 21:16
-
check this out http://msdn.microsoft.com/en-us/library/zcebx8f8(v=vs.80).aspx – Emrah Mehmedov Jan 02 '13 at 21:30
0
I found my answer after a while.
I just needed to add a setup project to my application and then build the setup project which would give me a .cab
file that can be installed on the smart device.

Mahdi Tahsildari
- 13,065
- 14
- 55
- 94