On an expo app, I need to get a hold of a value that would necessarily be unique for this app (not the instance, but the app itself).
For example – a bundle id could be it, as it will be the same for all instances and versions of that app on all devices it is installed on, but is unique for that app only.
My issue is that I can’t find a way to get the bundle ID in expo.
react-native-device-info
seems to be the only library that helps getting the bundle ID but I can’t seem to find a way to make it work on expo.
Is there a different value that answers these demands which I can get a hold of in expo?
** It is ok if the value could be different between the iOs and Android versions of that app. Like bundle ID could be different. Ideally not- but it’s ok.