What did i find?
We cannot set android:resizeableActivity="false"to a tag <application>; it is ignored. (Google documentation error)
It works when I set it to the main action
<activity
android:name=".activities.SplashScreenActivity"
android:label="@string/app_name"
android:theme="@style/splashScreenTheme"
android:resizeableActivity="false">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>