How to find the UDID of Android Device
What is UDID :
It stands for Unique Device Identifier.
UDID is required during Android application
development or Android App automation to get the unique id of the Android device. It is needed
in cases when the user wants to track the unique device installations of the
application or to send the ADB commands to the device while executing automation
scripts.
To find UDID of Android device,
You can watch Youtube video or follow the step by step procedure below:
OR
Step by step procedure below:
1. Go to settings for your Mobile device -> About Phone -> Build Number -> Tap 7 times to enable Developer options.
2. Go to Developer options , under Debugging -> Make sure to enable USB debugging ON.
3. Now connect your mobile device(using usb cable) to your PC.
4. Open Command Prompt and type below command
-> adb devices
5. Note down the UDID of your device.
6. It will appear as shown in below screenshot
Thank You!!