Friday, May 6, 2022

Test your android app from android studio without USB cable

Test your android app from android studio without USB cable:

- First connect your android phone to your pc/laptop.
- Open CMD and go to this location: 
C:\Users\{YOUR_USER}\AppData\Local\Android\Sdk\platform-tools

Here {YOUR_USER} will be your local user which you are using.

- In command prompt give these command: adb devices
To see all devices are connected

- Next command: adb tcpip 5555

- Next command: adb connect YOUR_IP
It will show your device is connected to YOUR_IP:5555


After that you can test your android in real android device without cable.
Thanks.

No comments:

Post a Comment

Workflow of WordPress project in a team with Git

1. We should not push any Wordpress core folders or files to github. 2. Only push custom theme and custom plugin into github. 3. So, in this...