How to use adb tcpip without USB debugging enabled?

两盒软妹~` 提交于 2019-12-05 01:42:51
Robin Gawenda

On your rooted device, install a Terminal Emulator

enter "su" and then "start adbd" (source)

I have tried this on my rooted Android 4.0.4 device. I could connect normally without enabling USB debugging. A few more words:

  • "USB Debugging" is actually called "enable_adb" internally.
  • If you enable USB Debugging this usually happens(little device dependant):
  • a Settings.Secure value is stored (ADB_ENABLED)
  • (on some devices also a system property is set)
  • the adb deamon is started

If the UsbManager just checks for the Secure Setting, everything should work. If it checks for the actual running deamon you are out of luck.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!