'Disable split screen in react native expo app

does anybody know how to disable split screen in a React native expo app?. I have found in the docs this solution but only for ios. Thanks a lot in advance

Open your app.json and add the following inside of the "expo" field:
{
  "expo": {
    ...
    "ios": {
      ...
      "requireFullScreen": true,
    }
  }
}


Solution 1:[1]

Add the following in your AndroidManifest.xml file:

<activity android:name=".MainApplication"
    android:resizeableActivity="false"
/>

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Tafsir Ahamed