Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I developed an application. Now I want to deploy it on real device. Can any body please tell me the steps and the requirements to deploy it on a real device.

Thanks Deepak

share|improve this question

5 Answers

up vote 16 down vote accepted

There are multiple ways:

  1. If you don't use eclipse, you can use adb tool. adb -d install PATH_TO_YOUR_APK_FILE
  2. If you use eclipse, you can click run application in eclipse's launch menu. If this doesn't work, make sure you have "USB Debugging Mode" checked on your android phone. It's in the application menu.
  3. You can export your package and sign it! And then browse to it to install.
share|improve this answer

Hook up your SmartPhone through USB-cable and set your phone i debug mode found in Settings > Applications > Development > USB debugging. Next - run your project in eclipse and chose your device.

make sure 'Run configurations' is set to manual, or this will fail if set to automatic and the target is a emulator. To change this behaviour, go to 'Run > Run configurations > Target' and set 'Deployment Target Selection Mode' to manual. Click 'Close' and try again.

share|improve this answer
2  
For my HTC Evo V, it's a little different (this answer is a couple years old). Settings => Developer options => Check "USB debugging" – vbullinger Feb 16 at 23:15

I just copy the APK for my project out of the /workspace/project/bin folder, and use Dropbox to send it to my device. Then I install the APK from Dropbox client on the device. (No need for cables!)

share|improve this answer
could always just email the APK to yourself if you don't want to bother going through dropbox – Abraham Adam Feb 4 at 5:06

If you are using Eclipse IDE then have a look here http://www.devx.com/wireless/Article/39972

There's also information on the Android Developer site

share|improve this answer

Here are three other instances on Stackoverflow to get you started:

sending-android-app-to-friend

how-can-i-send-an-android-app-that-im-developing-to-someone-over-e-mail

Distributing by other means

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.