Reputation: 83028
I want to test my application on actual device, so how can I go for it? And is it accessory to sign in
and use zipalign
for this purpose, or they are useful when preparing for publish my application? And is there any way to test my application on actual device without using eclipse?
Upvotes: 4
Views: 29170
Reputation: 3
You can install .apk files directly to your android device using the following steps:
Upvotes: 0
Reputation: 40513
Yes u can directly install your application into actual device without signing and zipalign. You can install the drivers for your software into your computer and use you device directly for debugging alternative to Emulator
Refer Using Hardware Devices
or you can install using Android adb tool Refer Installing an Application
or you can directly copy your application package file to you sdcard and install
The easy steps to install your apk using File manager :
P.S: Don't forget to enable Unknown sources in Settings > Security. And when installing via Eclipse enable USB Debugging > Developer Options
Some tips: http://developer.android.com/distribute/open.html
Upvotes: 7
Reputation: 5806
and you are done. Please note that adb command will run correctly from anywhere if you are having a correct path pointing to android sdk / plateform-tools direcory
I hope this will help you
Upvotes: 18