Is there a way to set Android Portrait mode on an application level like how we do in iOS as shown below ?
I do not want to add
android:configChanges="orientation" android:screenOrientation="portrait"
on each Activity entry of the manifest or add the following code
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
in each activity! Thanks in advance..