After building my app i get a blank white screen

After building my app with eas build -p android --profile <profileName>, a apk file is created which i install by scanning the QR code, which opens the relevant installation link. When i install and open the app, a blank white screen is displayed. I can confirm the app was fully functional via the expo app. The following is my EAS.json file if it helps:

{
  "cli": {
    "version": ">= 3.12.0"
  },
  "build": {
    "development": {
      "developmentClient": true,
      "distribution": "internal"
    },
    "preview": {
      "distribution": "internal"
    },
    "production": {}
  },
  "submit": {
    "production": {}
  }
}

@andrewthomas.yed66 Which build profile did you use ?

Hi @andrewthomas.yed66

Unfortunately, those symptoms can be caused by various different things.

Since it works in the Expo Go app, this sounds like a managed workflow app. In which case you should not have an android directory in your project.

Do you have an android directory? If so, unless you have made changes to it that you want to keep, you should get rid of it.

If you don’t have an android directory or if getting rid of it still doesn’t fix the problem, please see the Troubleshooting build errors and crashes page. See also the Production errors docs.