I’m writing an app in React-Native and need some help concerning identifying the device after reinstalling the application.
What I need:
- Get a unique device ID for every device for both Android and iOS.
- The same ID should be returned even if the user uninstalls the application and installs it again.
The closest to this I’ve come over is the getUniqueID() method in react-native-device-info. However, a different ID will be returned on iOS if the app is reinstalled since the returned value for this method is related to the vendor.
Have a great day!