-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ADB functionality. #29
Comments
So for example, if you |
Hi @ethanhs, |
Wow, great! I am glad you found this. :) I will add this to the list and add something in the notes. Thank you! |
Fixed in 810914c |
Awesome, this would enable me to develop React-Native on device. Will check it out |
I don't believe this works on WSL2? I've got the same ADB version running on both windows and Ubuntu, ensuring I start the windows adb server first (via CMD) and the device list is always empty in the WSL. |
For me it's very simple: Run the production build via WSL and use ADB through Git Bash on CMD (and everything else works there as well). I only have to remove the build folder and switch my
|
You can actually operate adb on WSL.
Well, on some level.
By default, WSL will install adb of version 1.10.31.
If you pick the very same version on Windows and start adb server (adb start-server) on Windows, you can actually see and access android devices on WSL.
I assume adb server's inter-process communication is based on network model (on port 5037 as you often see).
So even the server is running on windows, it does not break the client running on WSL as long as they recognize each other with same version number.
Have fun hacking WSL :D
The text was updated successfully, but these errors were encountered: