Reputation: 13
I'm new to Kivy and am trying to make a game that will load and play horizontally on an android phone no matter which direction the phone is oriented. Is there an easy way to do that? I looked through the Kivy documentation as well as some other sites & didn't find much. Thanks in advance!
Upvotes: 1
Views: 511
Reputation: 1599
You can set the landscape orientation in the buildozer.spec file.
# (str) Supported orientation (one of landscape, sensorLandscape, portrait or all) orientation = landscape
Upvotes: 2