How to find the UDID of an 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

Step by step procedure below
:

1.
Go to Settings for your Android 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 Android 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 Android device.

6.
It will appear as shown in below screenshot


How to get the UDID of Android Device




Thank You!!