I want some tools to see async storage in android or IOS emulator. I need some tool to see that. I am currently using React Native Debugger in mac.
I want to see the content of async storage in each and every activity.What is the best way to achieve it?
Asked
Active
Viewed 2,398 times
0

Supermacy
- 1,429
- 15
- 24
2 Answers
3
React Native Debugger has this built-in.
We can use showAsyncStorageContentInDev()
in the RND console and we will be able to see the asyncStorage
But there is a problem with the integration of asyncStorage
with debugger console. Some times it does not resolve anything. It happens while using react native with android.

Ajay Sivan
- 2,807
- 2
- 32
- 57

Supermacy
- 1,429
- 15
- 24
-1
I think using console.log()
is a good way to see it

Mojtaba Moshfeghi far
- 571
- 1
- 5
- 20
-
I dont want to use console.log(). Its too frustrating to write in each and every screen. – Supermacy Sep 14 '18 at 06:54
-
Then I think you can use reactotron , it has Async Storage explorer https://github.com/infinitered/reactotron – Mojtaba Moshfeghi far Sep 14 '18 at 08:18
-
Any other tool without using reactotron.? – Supermacy Sep 14 '18 at 08:31
-
Sorry I don`t know any other tools – Mojtaba Moshfeghi far Sep 14 '18 at 13:06