Can't change the default splash screen

So I made a splash screen for my android app, and after building my apk for tests, it shows the expo splash screen at the start.

I can’t find anything on how to change it.
This is my current app.json just for reference.


{

  "expo": {

    "name": "D&D Monster Reference",

    "slug": "dnd-monster-reference",

    "version": "1.0.0",

    "orientation": "portrait",

    "icon": "./assets/icon.png",

    "splash": {

      "ldpi": "./assets/splashScreen/splash-port-ldpi.png",

      "mdpi": "./assets/splashScreen/splash-port-mdpi.png",

      "hdpi": "./assets/splashScreen/splash-port-hdpi.png",

      "xhdpi": "./assets/splashScreen/splash-port-xhdpi.png",

      "xxhdpi": "./assets/splashScreen/splash-port-xxhdpi.png",

      "xxxhdpi": "./assets/splashScreen/splash-port-xxxhdpi.png",

      "resizeMode": "cover"

    },

    "updates": {

      "fallbackToCacheTimeout": 0

    },

    "assetBundlePatterns": [

      "**/*"

    ],

    "ios": {

      "supportsTablet": true

    },

    "android": {

      "adaptiveIcon": {

        "foregroundImage": "./assets/icon.png",

        "backgroundColor": "#FFFFFF"

      },

      "package": "com.dnd_monster_reference.dnd_monster_reference",

      "versionCode": 1

    },

    "web": {

      "favicon": "./assets/favicon.png"

    }

  }

}

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