disable split screen react native code example
Example: disable split screen react native
//React-Native
//In your androidManifest.xml
<activity android:name=".MainApplication"
android:label="@string/app_name"
android:resizeableActivity="false"//<<-- ADD THIS
/>