Answers for "react native environment"

1

react native installation

npm install -g react-native-cli

//cd to the file where your react native projects will be 
react-native init albums

// Run instructions for  IOS/Android
cd projects/albums 

npx react-native run-ios
npx react-native run-android
Posted by: Guest on September-22-2020
1

react native environment variables

# .env files
API_URL=https://myapi.com
GOOGLE_MAPS_API_KEY=abcdefgh

# use env
import Config from 'react-native-config'

Config.API_URL  // 'https://myapi.com'
Config.GOOGLE_MAPS_API_KEY  // 'abcdefgh'

# call env
development: ENVFILE=.env.staging react-native run-android
production: cd android && ENVFILE=.env.production ./gradlew assembleRelease
Posted by: Guest on September-19-2021
1

start react native

react-native start
Posted by: Guest on July-14-2020

Code answers related to "react native environment"

Code answers related to "Javascript"

Browse Popular Code Answers by Language