Splash screen on Android for expokit project

I have the splash screen working fine on iOS. On android it does not.

Here’s the relevant bits from app.json

"ios": {
      "supportsTablet": true,
      "bundleIdentifier": "xxxxxxx",
      "publishBundlePath": "ios/xxxxxxx/Supporting/shell-app.bundle",
      "publishManifestPath": "ios/xxxxxxx/Supporting/shell-app-manifest.json",
      "splash": {
        "backgroundColor": "#ffffff",
        "image": "./src/assets/img/splash.png",
        "tabletImage": "./src/assets/img/splash.png"
      }
    },
    "android": {
      "package": "xxxxxxx",
      "splash": {
        "backgroundColor": "#ffffff",
        "ldpi": "./src/assets/img/splash.png",
        "mdpi": "./src/assets/img/splash.png",
        "hdpi": "./src/assets/img/splash.png",
        "xhdpi": "./src/assets/img/splash.png",
        "xxhdpi": "./src/assets/img/splash.png",
        "xxxhdpi": "./src/assets/img/splash.png"
      }
    },

Hello! What do you mean by “it’s not working” ? Can you provide a screenshot or some recording/gif ?