I used android:resizeableActivity="false"
in mainfest inside application tag inorder to disable the split mode for my application ,
but when i open my application the below dialog is shown at the bottom of my application
on clicking "Full screen display" i get a dialog like below
the dialog says if i enable the full screen then my app will function abnormally, is there any alternative to disable split screen option.
To enable full-screen support add to the AndroidManifest.xml under the element
<meta-data android:name="android.max_aspect" android:value="2.1" />
by this, the "Full screen display" will not be shown.