Expo SDK 33 Android standalone build crashes

Fixed the problem by adding the corresponding files to the “android” section of the app.json

{
  "expo": {
   ...
    "splash": {
      "image": "./src/assets/images/splash@4x.png",
      "resizeMode": "contain",
      "backgroundColor": "#ffffff"
    },
    "android": {
      ...
      "splash": {
        "resizeMode": "cover",
        "mdpi": "./src/assets/images/splash.png",
        "hdpi": "./src/assets/images/splash@1.5x.png",
        "xhdpi": "./src/assets/images/splash@2x.png",
        "xxhdpi": "./src/assets/images/splash@3x.png",
        "xxxhdpi": "./src/assets/images/splash@4x.png",
        "backgroundColor": "#ffffff"
      }
    }
  }
}

Thank you for pointing me into the right direction!

2 Likes