Skip to content

Migration Guide

Kemal Ahmed edited this page Jul 30, 2020 · 7 revisions

v0.x.x to v2.x.x

See the reason behind the update

1

Rename the import from 'react-native-dotenv' to '@env':

Before:

import {API_URL, API_TOKEN} from 'react-native-dotenv'

After:

import {API_URL, API_TOKEN} from '@env'

2

Make sure to add module:react-native-dotenv to the list of babel plugins

module.exports = {
  presets: ["module:metro-react-native-babel-preset"],
  plugins: [
    "module:react-native-dotenv",
  ...
  ]
};
Clone this wiki locally