I created a default project, it includes some .png images in the project in the main folder:
Project - image.png - index.android.js - .....
Running run-android displays an error indicating that the image was not found:
"error: bundling failed:" Unable to resolve module
logoimg.png
fromC:\Users\Ayala\Documents\Developer\React\BrunoDantas\index.android.js
: Module does not exist in the module map \ n \ nThis might be related to link \ nTo resolve try the following: \ n 1. Clear watchman watches:watchman watch-del-all
. \ n 2. Delete thenode_modules
folder:rm -rf node_modules && npm install
. \ n 3. Reset packager cache:rm -fr $TMPDIR/react-*
ornpm start -- --reset-cache
. "
Has anyone ever had this problem?