My splash screen images aren't showing

I’m currently using the SDK 39 version and getting this problem while creating a splash screen for Android. So here is my app.json configuration:

"android": {
      "package": "com.justilgroup.rise",
      "versionCode": 1,
      "splash": {
        "backgroundColor": "#FDF5F1",
        "resizeMode": "native",
        "ldpi": "./assets/splashScreen/logo-ldpi.png",
        "mdpi": "./assets/splashScreen/logo-mdpi.png",
        "hdpi": "./assets/splashScreen/logo-hdpi.png",
        "xhdpi": "./assets/splashScreen/logo-xhdpi.png",
        "xxhdpi": "./assets/splashScreen/logo-xxhdpi.png", 
        "xxxhdpi": "./assets/splashScreen/logo-xxxhdpi.png"
      }
    }


So image just doesn’t show up. If I’m moving this splash screen outside of the android object, everything is working, but I need Image to resize for different screen sizes. How can I fix that?

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.