Buildozer – Orientation Portrait setting not working

Question:

I am a Python Kivy learner. As part of learning, 2 months back i successfully build a calculator app through google collab. The app was working perfectly. Now when i build the same app, it builds successfully but the orientation doesnt work. It rotates to all direction.

orientation = portrait

doesnt seem to work now.

I tried building other apps too recently through google collab, and the same orientation problem persist. Anyone recently built app through collab successfully without the orientation problem?

Asked By: Peter Fernandez

||

Answers:

import os

os.environ["KIVY_ORIENTATION"] = "Portrait"

adding this at the top of the main.py solves the issue.

Answered By: Peter Fernandez