I am currently going through the React-Native tutorials. I began with the Getting Started tutorial, where I made a new react native project and successfully managed to run t
I resolved this by changing the following in the app.json file. It appears the capital letter was throwing this error.
From:
{ "name": "Nameofmyapp", ... }
To:
{ "name": "nameofmyapp", ... }