Skip to content
Advertisement

Tag: kivy

Kivy-Buildozer Android Packaging not working (‘buildozer’ is not recognized as an internal or external command, operable program or batch file.)

I did not find any solutions for this on the internet. I am trying to create the Android apk file from my Kivy-Python file on Windows 10. I followed the standard documentation (e.g. this one or this one). I installed buildozer using the Pycharm IDE environment. I open the command box from the path adress bar of the folder with

Interrupting Kivy Toggle Button State Change on Click

I’ve got a toggle button that I’m using to start and stop a process. When the process is being stopped, I have a popup box that comes up, asking the user to enter a password to confirm they want to end the process. Only once the correct password is provided do I want the state of the toggle button to

Full screen kivy camera with buttons on top of the picture

How can I make a full screen camera with buttons on top of the image. It doesn’t help, the camera still comes out with frames. Didn’t find anything about this in the official documentation. Answer Some minor changes to your code (component reorder, added Window.maximize() do what I think you’re looking for (edit: modified to make the camera as large

Kivy Python: confused with class and instance methods

I was trying kivy and while I was accessing class variables, I was forced to use ‘self’ for class variables or else it was producing error. This is the kivy code I was using. Below is the main.py code where I have confusion: This code works. Here I am using class variables and accessing them from ‘self’. According to me

Cant wrap my head around Classes and Kivy

I am trying to use kivy.clock object more specifically Clock.schedule_interval to take temperature readings every couple seconds. I create a method in my main screen class (MyTerrLayout(Screen)) called clockAction. now when I type in Clock.schedule_interval(clockAction, 2) I get: So I tired to do self.clockAction but that didn’t work either. I tried various methods to get it going like moving Clock.schedule_interval(clockAction,

Kivy buildozer apk created but crashes on android

I’m working on an app, and my code works perfectly. I was also able to make the apk. But when I ran it, it didn’t work properly. My app uses pygsheets, so I thought that the reason might be some missing requirement, but I’m not sure what it is. Please help. Link to log is here. I’m not very sure

Advertisement