Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get Device UDID without XCode and without downloading any profile in 2020

Tags:

ios

udid

What is the best way/ right way to get the device's UDID? Without having XCode or without downloading any profile.
I've tried get.udid.io - It isn't working for my iPad, though worked for iPhone. I've tried whatsmyudid.com - It downloads a profile which is not verified- Can't ask my client to download such profiles.
Moreover, what is the official way of knowing my device's UDID?

like image 550
Roohul Avatar asked Sep 05 '25 03:09

Roohul


1 Answers

You can get device UDID by connecting it to Mac and run following command on terminal.

instruments -s devices

instruments is deprecated now use rcrun

xcrun xctrace list devices

It will display all devices names (and simulators) along with UDID.

like image 147
Saqib Omer Avatar answered Sep 08 '25 01:09

Saqib Omer