Zakaria
Zakaria

Reputation: 15070

Loading an application from Eclipse to a real Android device over wifi

I read many articles on how we can launch an Android emulator faster.

I found this SO post where user286101 said that he "can load the app over wifi onto the real device in a fraction of the time".

My question is : how can I load an application, from Eclipse, to my real device through wifi ?

Regards.

Upvotes: 3

Views: 3580

Answers (4)

Angelo Manos
Angelo Manos

Reputation: 1

In addition to bytebender's suggestion, you can transfer your apk with kies air as well, and run it by locating it with your Android's file browser. It's not exactly launching from eclipse, but this is what I had to do because I didn't have an OEM usb connector and the 3rd party (cheap) ones I had weren't connecting to my PC. I couldn't get the adb method to work. My phone does not have ROOT access.

Upvotes: 0

QED
QED

Reputation: 9933

I believe you must connect adb to your device using the command line: adb connect <host>[:<port>]. Then Eclipse will adb your device over WiFi.

Check out the adb docs.

Upvotes: 3

bytebender
bytebender

Reputation: 7491

I do it all the time via dropbox.com takes just a matter of seconds.

Just move the .apk to your dropbox folder and then open it from your device. This will work for both wifi and 3G.

Upvotes: 0

Alexander Fuchs
Alexander Fuchs

Reputation: 1358

This is adb wireless : http://www.appbrain.com/app/siir.es.adbWireless

butt your phone has to be rooted

Upvotes: 1

Related Questions