There are an old thread where the soluction is: change orientation to portrait.
Now the Play Console shows a warning about change the orientation to unspecified to use with Android 16 (there is will be mandatory in 2026 to foldable devices and tablets).
I want to start to change my apps (that is all using the portrait orientation) to unspecified, but I get this behavior: always back to the first page and this info in the logs:
#SupportedOrientations attribute must be set to landscape or portrait.
With this line in the manifest, I can solved half of the problem (don't back to first page):
but when I change the orientation, the layout don't adjust in the scren
Any tip to solved it?
Thanks in advance.
Now the Play Console shows a warning about change the orientation to unspecified to use with Android 16 (there is will be mandatory in 2026 to foldable devices and tablets).
I want to start to change my apps (that is all using the portrait orientation) to unspecified, but I get this behavior: always back to the first page and this info in the logs:
#SupportedOrientations attribute must be set to landscape or portrait.
With this line in the manifest, I can solved half of the problem (don't back to first page):
B4X:
SetActivityAttribute(Main, "android:configChanges", "orientation|layoutDirection")
Any tip to solved it?
Thanks in advance.