EAS build fails(managed, ios, android) - Unable to resolve module ./App

Hi @4kot!

I think there are a couple of things going on here:

  1. We deprecated the packagerOpts in the app manifest, it should not be used anymore.
    Screenshot 2021-05-31 at 14.01.55

  2. We also deprecated the *.expo.js|ts file extension, see this for more info.

  3. It’s recommended to use the index.js file (in the root of your project) to register the root component, it avoids some additional complications finding the entry point of your app. You can set this up by registering the root component in this file, and importing the component from main.jsx (see this as example)

The other files you provided seem to be good. Hope this helps you a bit!