Questions tagged [adbwireless]

20 questions
72
votes
34 answers

Android Studio wireless ADB error (10061)

It seems that wireless ADB has more and more issues each time I update Android Studio. Using 2.1.1, I'm now unable to connect to my tablet using the command: adb connect It results in the error: unable to connect to :5555: cannot…
Luke Allison
  • 3,118
  • 3
  • 24
  • 40
34
votes
8 answers

adb over Wi-Fi (Android 11+) on Windows: how to keep a fixed port or connect automatically?

The wireless adb connection works fine on my Android 11 phone + Windows workstation. But it's not convenient, as every time the phone Wifi disconnects/reconnects, I have to: Turn on wireless debugging in Android settings. Take note of the port…
Sébastien
  • 13,831
  • 10
  • 55
  • 70
18
votes
6 answers

android pair command not found ( Wireless Debugging )

I am trying to connect to my phone wirelessly for USB Debugging using following : adb pair 192.168.30.27:41424 . But I am getting following error: "Unknown command pair" error. I have already updated Android SDK Platform tools to 31+ version, still…
NeeK
  • 662
  • 1
  • 8
  • 21
7
votes
1 answer

detect wireless debugging option active or not in developer mode in android programmatically

I have tried developer mode and USB debugging is enabled or not, using the below code changes. it's working fine. private fun check_My_Android_Mobile_Developer_Mode_Status() { // solution 1 val adb: Int =…
harikrishnan
  • 1,985
  • 4
  • 32
  • 63
7
votes
1 answer

Android 11/12 Wireless Debugging not available when using Mobile Hotspot as the network

Before android 11, i was able to wirelessly debug apps using this method turn on the mobile hotspot in the (target) android phone connect the computer to the hotspot run adb tcpip 5555 adb connect [ip of the target phone] The problem is Android 11…
Nasib
  • 1,173
  • 1
  • 13
  • 23
5
votes
4 answers

Adb wifi connection with Android 6.0

I have a Nexus 6 device with Android 6.0, stock version without root. To avoid to permanently connect device with usb cable i used this procedure: I connected the device by USB cable to PC type on terminal adb tcpip 5555. type adb connect…
xcesco
  • 4,690
  • 4
  • 34
  • 65
3
votes
4 answers

Unable to do wireless debugging (ADB) in android

I have a situation where I need to store some data on USB. There are some errors that occur when I try to attach USB to my android device. I tried to debug my app through ADB. Here is what I have done up till now. I have downloaded the…
J.Doe
  • 53
  • 1
  • 1
  • 8
3
votes
3 answers

Auto wireless connect Android device and IntelliJ via adb

I am using IntelliJ to develop Android application. On my device I've installed adbWireless which allow me to debug application via WiFi. To connect my PC with device I have to call in terminal adb connect 192.168.1.105:5555 and since now I can run…
hsz
  • 148,279
  • 62
  • 259
  • 315
2
votes
1 answer

Is there a way to enable wireless debugging on an Android 8.0 device?

I've been able to use wireless debugging on an Android 11 phone over Visual Studio on Mac, mainly because it explicitly has 'Wireless Debugging' option. But I couldn't find similar option on an Android 8 phone. So is it possible to debug wirelessly…
zeuschyant8
  • 453
  • 7
  • 14
1
vote
0 answers

ADB connect to not working anymore or endless install process

I have a MacBook Pro 16 and Galaxy S10 combo and I used "wifi adb" over month by "WIFI ADB ULTIMATE" plugin, but once it broken and I can't connect to my device. I restarted the MB and the S10 many many times, I tried suggested solutions from other…
Robertoq
  • 559
  • 1
  • 10
  • 21
0
votes
0 answers

Is it possible to make the wireless debugging port static?

I have a Google Pixel 7 phone using Android 13, not rooted. Is there a way to specify a static port when doing wireless debugging, so that it doesn't change if you turn off and then turn on Wireless debugging? If it changes after reboot that's fine,…
Lynob
  • 5,059
  • 15
  • 64
  • 114
0
votes
0 answers

Wireless adb with android <11

I want to load apps from Android Studio onto my phone. I don't want to use a usb cable for reasons (my charge port has debris or something in it). If I had android 11, I could go to Developer Settings and scan a qr or type a code to load code…
Adam
  • 161
  • 7
0
votes
1 answer

Appium ADB Error: Error getting device platform version , when device is connected via tcpip on port 5555

I have connected android device wirelessly over tcpip on port 5555. When I run command "adb devices" I get following output List of devices attached 172.16.202.156:5555 device Now, I am running the appium test case on the same device using following…
Yogesh Solanki
  • 487
  • 5
  • 12
0
votes
1 answer

Connect to android 7 with adb over WIFI without ever connecting via USB

I want to connect to an android phone using adb over WIFI. When I do (either by using WIFI Adb or the buildin ADB over Network in android) I get: $ adb connect 192.168.122.203 failed to authenticate to 192.168.122.203:5555 and adb devices shows the…
Nathan
  • 7,099
  • 14
  • 61
  • 125
0
votes
1 answer

AdbWireless application has failed

Hopefully someone else out there is familiar with this, I'm trying to custom-script my adbwireless app but it keeps returning code 7. Where is a setting where I can enable debug mode?
user798759
  • 42
  • 3
1
2