How to remove ‘Warning: Async Storage has been extracted from react-native core…’?

There are two ways you can do this.

  • Firstly import AsyncStorage correctly. This will remove the warning and fix the problem.
  • Secondly, suppress the warning. This will just hide the warning but will cause you issues once AsyncStorage has been removed from react-native. I would not do this as the first way actually solves the problem.

Note you can get this warning if you are using a dependency that uses AsyncStorage and still imports it the old way from react-native. Installing AsyncStorage won’t fix the error. You will need to look through your dependencies’ dependencies to find out which one is causing it.

This means actually going through the code of each your dependencies to see if they use AsyncStorage. Searching through your node modules or on the dependency’s Github usually is sufficient but it can take some time to find it.

Once you have found out which one is causing it, you should open an issue or create a PR with a fix on the dependency’s repo. At this point suppressing the warning is all you can do until it is fixed.

Install AsyncStorage

  1. Install it using your favourite package manager npm or yarn
  2. Link the dependency
  3. Use the dependency

Installation: choose the method you usually use

npm i @react-native-community/async-storage

or

yarn add @react-native-community/async-storage

Link the dependency (you may not have to do this if you are using 0.60+ as it has Autolinking)

react-native link @react-native-community/async-storage

Then you import it like this, and use it as before.

import AsyncStorage from '@react-native-community/async-storage';

You can see more about it by looking here

Suppress the warning.

Previously you would use YellowBox to suppress warnings, this has now changed to LogBox. The process is similar to that of YellowBox

import { LogBox } from 'react-native';

Then you can add the following

LogBox.ignoreLogs(['Warning: Async Storage has been extracted from react-native core']);

I usually do it in the App.js so it is easy to keep track of which ones I have hidden.

It won’t remove the warning from your console, but it will remove any LogBox warnings associated with the error. However, I wouldn’t do this on this occasion as there is a proper fix, which is to install the dependency correctly.


Expo users

Currently Expo still imports AsyncStorage from react-native, due to this you may still experience the warning. I believe it still imports it this way for backwards compatibility reasons. A quick search of the Expo repo shows that there are many instances where it is used as you can see here. In this case your only option would be to suppress the warning. According to the Expo feature requests it is currently in progress, so hopefully it should be added to Expo shortly.

Expo Update

As of June 2020: @react-native-community/async-storage v1.11.0 can be installed in Expo managed apps. Hopefully this will lead to less of these warnings appearing as dependencies transition to the new way of importing async-storage.

Repo update

There is now a new repository for async-storage which can be found here

https://github.com/react-native-async-storage/async-storage

Check out the documentation for installation and linking instructions

https://react-native-async-storage.github.io/async-storage/docs/install/

Leave a Comment