hayanisaid / React-Native-Common-Errors

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The most common React Native errors and their solutions:

1 - React Native : Error: Duplicate resources - Android

Solution source

rm -rf ./android/app/src/main/res/drawable-*

rm -rf ./android/app/src/main/res/raw

2 - Error message "error:0308010C:digital envelope routines::unsupported"

Solution source

  • For MacOS
export NODE_OPTIONS=--openssl-legacy-provider
  • For Windows
set NODE_OPTIONS=--openssl-legacy-provider

About