Is AsyncStorage shared across apps?

后端 未结 1 733
清酒与你
清酒与你 2021-02-15 01:59

My question originates from the docs: https://facebook.github.io/react-native/docs/asyncstorage.html#clear

AsyncStorage.clear -> Erases all AsyncStorage f

1条回答
  •  时光说笑
    2021-02-15 02:27

    AsyncStorage is not shared between multiple apps. Every app runs it it's own sandbox environment and has no access to other apps.

    To call AsyncStorage.clear only means you will delete all data which your app has stored in AsyncStorage.

    That includes

    • all data which was stored by a library that uses AsyncStorage like https://github.com/sunnylqm/react-native-storage
    • all data from all users (in case of multi user)

    For more information about app sandboxing you can read this answer: What is Sandbox in ios , Can i Trans data between in one App to Another App in iPhone,if possible how

    0 讨论(0)
提交回复
热议问题