In the official AsyncStorage example:
https://facebook.github.io/react-native/docs/signed-apk-android.html
Every key value has a @myAppStore:
prefix.
await AsyncStorage.setItem('@myAppStore:key', '{ "data": [...] }');
However, in Save sensitive data in React Native, it seems Android and iOS both have their sandboxes, so the data is (kind of) secured.
Does the @myAppStore:
prefix define the scope (eg. like creating a new collection in NoSQL), or it just a naming convention?