Reputation: 6027
::ffff:127.0.0.1 - - [18/Oct/2020:09:21:04 +0000] "GET <class-module-name"> <HTTP/1.1" 404 208 "-" "okhttp/3.12.1"
I am getting it for the App.js file that is referenced from index.js, and for the first module that is imported in App.js. The strange thing is that the bundler reported errors for these modules, so it accessed them already...
Any idea?
(I have read all the relevant github and stack overflow issues/questions mentioning a similar error. None solved my problem).
Upvotes: 0
Views: 198
Reputation: 8043
Since you have upgraded RN, and then downgraded back, and then copied over files from different versions/branches, I would strongly recommend you to clear the cache when compiling:
To clear your cache:
react-native start --reset-cache
If you are using expo-cli, then use:
expo start -c
Upvotes: 2