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
Tag: kivy
Kivy: best way to make a single widget containing different widgets and being able to access their properties in the kv file
I’m trying to make a class that would be a Slider + 2 Labels, one label showing the value of the slider, and one showing the name of the slider. The goal is to reuse this in lieu of Slider when convinient. I am ending up creating properties in the my class MySlider reflecting the ones I am interested in
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
Using hex color code from py file in kv file
I am making this program that deals with a lot of colors and it gives the user the freedom to change many of them. In one part of my program I use markup for one of my labels and and I realized something about the ‘color’ tag. When my program starts I want my label to follow the theme but
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
How do I create an apk file from kivy with github
Is there a way to convert a kivy file to apk on github. I have been looking around online and there seems to be possible but I am not sure how to do it. If someone could help me I would be very thankfull because I cannot find a way to convert my kivy file to apk. I have tried
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,
How to reference widgets inside widgets using IDs in Kivy, Kivy Lang, Kivy MD
okay, THIS HAS BEEN DRIVING ME INSANE FOR LIKE THE PAST TWO DAYS. and its really annoying, so i am building an application using kivy, after getting used “easy as pie” tkinter I thought it was time to learn kivy (as it has mobile compatibility). #I wanted to learn to reference different widgets# I searched YouTube and google for hours
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