If you do not use genuine TestFlight for test distribution of iPhone and iPad apps, it will be an extension of AdHoc distribution, and it seems that you can not escape the procedure of registering the UDID of the device in the Provisioning Profile and building it.
Unfortunately, even if your device doesn't have a unique UDID in your asset management ledger, Tranquilo doesn't seem to have to panic.
You can also check the UDID on Linux.
it's simple. It is displayed by the lsusb -v
command.
$ lsusb -v
(abridgement)
Bus 001 Device 010: ID 05ac:12ab Apple, Inc. iPad 4/Mini1
Device Descriptor:
bLength 18
bDescriptorType 1
bcdUSB 2.00
bDeviceClass 0
bDeviceSubClass 0
bDeviceProtocol 0
bMaxPacketSize0 64
idVendor 0x05ac Apple, Inc.
idProduct 0x12ab iPad 4/Mini1
bcdDevice 5.03
iManufacturer 1 Apple Inc.
iProduct 2 iPad
iSerial 3 0123456789012345678901234567890123456789
bNumConfigurations 4
(abridgement)
The 40-digit hexadecimal number of iSerial is the same value as the UDID displayed in Xcode.
The article that appears when you search for "Windows UDID" also describes how to cite the same information. So maybe this method will work for a while.
Well, I think that the correct answer is to check it once according to the regular procedure and write it in the ledger.
Recommended Posts