AsyncStorage是否跨应用程序共享?

Ali*_*lov 4 react-native asyncstorage

我的问题来自文档:https://facebook.github.io/react-native/docs/asyncstorage.html#clear

AsyncStorage.clear - >删除所有客户端,库等的所有AsyncStorage ....

这是否意味着所有应用程序共享相同的AsyncStorage?

Ale*_*tig 6

多个应用之间共享AsyncStorage .每个应用程序都运行它自己的沙箱环境,无法访问其他应用程序.

调用AsyncStorage.clear仅表示您将删除应用程序存储在AsyncStorage中的所有数据.

那包括

有关应用程序沙盒的更多信息,您可以阅读以下答案: 什么是ios中的Sandbox,我可以在iPhone中的一个应用程序与另一个应用程序之间传输数据,如果可能的话