Change Splash Image in Detached App

I’m trying to change the splash image in an expokit project to no avail. I’ve updated it in app.json, and re-built the app, but it keeps using the old splash image. Can anyone tell me what I’m missing? Thanks!

Figured it out, in android/app/src/main/rec/drawable-xxxhdpi, I had to replace shell_launch_background_image.png with my new splash image.

Hope this helps someone else who runs into the same issue.

Glad you figured it out and thanks for sharing the solution with the community.

I have changed shell_launch_background_image.png and also changed splash_background.xml:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:drawable="@drawable/shell_launch_background_image" android:gravity="fill"/>

    <item>
        <bitmap
            android:gravity="center" android:src="@drawable/logo" />
    </item>
</layer-list>

And the first splash screen which is loaded in Android app is correct, however there is appeared second splash screen, without starched background image and without logo, it’s happening in ExpoKit 34, it worked fine in ExpoKit 33. How to fix it? How remove this second weird splash screen? or how to make it look the same as the first screen?