TapTap
TapTap copied to clipboard
Please support non-portrait screen orientations
Hello.
When I run the app on my Surface Duo using Android 14, the screen looks like this:
The reason for the behavior is a setting in the manifest:
<activity
android:name=".ui.activities.MainActivity"
android:screenOrientation="portrait"
This locks the orientation to, well, portrait. Setting it to unspecified
implies that the app doesn't care about the screen orientation, which is the best approach if the ui looks good in non-portrait.
I applied the change and looked at quite a few screens of the app, and all seemed ok. It would be awesome if you consider applying the change. So far I have not created a pull request, but if this helps, I am certainly more than happy to create one. Thank you very much for the Incredible job you are doing.