How to get device phone number or unique id in Swift?
Anyway, how can I figure out my phone number using Swift? This is because I want to get the unique iOS device number ID for my app. In android we can get the device SID and its ID never changes when the app is uninstalled and installed again. For Swift, how can I get a unique id or phone number?
a unique android id as well as an example of a secure id
String deviceId = Secure.getString(this.getContentResolver(),
Secure.ANDROID_ID);
iOS Swift
var uuid = NSUUID().UUIDString
Above the line, will uuide be changed after re-installing the app?
+3
source to share
2 answers