Please provide the following:
- SDK Version: 40
- Platforms(Android/iOS/web/all): all
Hi, in the documentation for constants
under installationid
it says:
This property is deprecated and will be removed in SDK 44. Please implement it on your own using expo-application’s androidId on Android and a storage API such as expo-secure-store on iOS and localStorage on Web.
I see so many people asking about a way to identify which device the user is on, so why not have a way to identify the device? I need one in my app. Also, how do you implement it on your own with a storage api? What methods of the storage api generate a unique deviceid? I looked through the Secure Store
documentation and I don’t see any methods that generate device id’s. So, not only is installationid
being removed, but there’s no assistance, i can find, about how to implement it on your own.
The 4 methods I see in the SecureStore package are: isAvailableAsync()
, getItemAsync()
, setItemAsync()
, and deleteItemAsync()
. Which of those can generate a device id or installation id?