Mathias Lindström
Mathias Lindström
By changing the name means also that you need to clean your project with `rm -rf .buildozer`. The compiled cached-data is still pointing to your old one.
The problem should be visible through logcat. Sounds to me it's a problem with your code. Missing packages or something. But as said, you can see that through logcat.
Do the steps again and check the logs.
Looks to me like you are calling the super() in the wrong class. You should be seeing something in the logs about this.
> No, actually I did it in source code of `ProgressBar` after observing that odd behaviour. Did you also notice that same behaviour after altering the position of kwargs ?...
Not a problem on my end: ```python from kivy.app import App from kivy.properties import NumericProperty from kivy.uix.progressbar import ProgressBar class MyProgressBar(ProgressBar): max = NumericProperty(20) value = NumericProperty(50) default = NumericProperty(1)...
Thank you! Now I understand the problem. I will look into the source code. But for now you can use: ```python from kivy.app import runTouchApp from kivy.uix.progressbar import ProgressBar from...
As I had a conversation on Discord with the Core-Devs. They suggested updating the documentation page and being specific about what you said about placing the arguments in the right...
I have been interested in getting this to work with Kivy: [SDL2CEF2](https://github.com/kuzeyron/sdl2-cef2) The main problem is how we can make a minimal `.so` file to be used with SDL2 through...
From having nothing, a CEF browser would at least be a good start.