Hello,
I need a way where I can provide a serial number that will only work on one device at a time. I was going to use the device ID but I read that it is not reliable and is either not fully supported or it changes per build. I know I cannot get the user’s phone number and I cannot rely on them to enter it because they may enter the same phone number on more than one device. I have a SQL server I am storing these in and will verify against. So do you know of any unique information I can use per device? The only way I am thinking is to generate a unique number with os.time() and adding a random number on the end and save it on the device and on the SQL server to compare. The user would never see it. Any better way?
Thanks,
Warren