Greg Peckory
Greg Peckory

Reputation: 8068

Install Android app on device through wifi - no usb or emulator

Just as it says in the title.

It seems my smartphone data connectors are broken, and the emulators run far too slow on my computer (surprisingly because it is i7).

So, is there any way I can use an alternative to usb debugging through WIFI instead of usb?

Upvotes: 0

Views: 272

Answers (1)

Pravjyot Singh
Pravjyot Singh

Reputation: 66

If you are using Cyanogenmod, developer options provides a way to operate adb over network.

1) Enable 'ADB over network' in Developer option of Android Settings

2) When you enable 'ADB over network' and if you are connected to internet, you will find your wlan device ip address below the given text. Lets say it is a.b.c.d:5555

3) Run 'adb connect a.b.c.d:5555'

4) Now you are good to use adb to install apps or for debugging purposes

Other devices require root access to operate adb over wifi. Given below link describes the process for same:

How can I connect to Android with ADB over TCP?

Upvotes: 1

Related Questions