Skip to main content
Filter by
Sorted by
Tagged with
0 votes
2 answers
39 views

as my first kivy adventures i try to print a data-graph. my main.py looks like this. I have to add some more details until stackoverflow lets me ask. But i think the code speaks for itself. from kivy....
Freisei's user avatar
0 votes
0 answers
23 views

For some time, I have tried to make "Nested Expansion Panels" in kivymd, meaning an Expansion Panel within an Expansion Panel, and for the love of it, I can't make the layout work. Should be ...
Renox134's user avatar
3 votes
0 answers
136 views

I used the example from https://github.com/kivy/kivy/blob/master/examples/widgets/recycleview/basic_data.py and modified it only to provide some garbage collector stats. What I see is that objects are ...
Eugene B's user avatar
0 votes
1 answer
107 views

I have an app (graphics + service), and they work perfectly. When the app starts, the service and graphics start. After a phone reboot, the service starts again. However, there's one problem: if I run ...
Jessy James stands with Russia's user avatar
1 vote
0 answers
98 views

I would like to add a .aar file (onnxruntime.aar) to my Kivy project. My project structure is: ├── buildozer.spec ├── dress.jpg ├── libs │   └── onnxruntime.aar ├── log.txt ├── main.py ├── __pycache__ ...
Noob_Testautomation's user avatar
0 votes
0 answers
47 views

I am trying to build my kivy app with buildozer. I successfully installed everything it required, including lld from warning message, but it still gives me this error message: [DEBUG]: -> running ...
Ivan Moroz's user avatar
1 vote
1 answer
35 views

I have a Kivy app where I am injecting a widget as a dependency to the main app. The injected widget has the wrong layout (that was defined in the .kv file). Here are the following files: Layout is ...
frimann's user avatar
  • 189
2 votes
1 answer
56 views

I'm developing an android app which shows schedule. I followed some tutorials and eventually made these pieces of code: ui.py import kivy from kivy.app import App from kivy.uix.boxlayout import ...
Ivan Moroz's user avatar
1 vote
1 answer
78 views

I'm trying to configure an application (Kivy framework, Python language, https://github.com/lyskouski/app-language) distribution via msstore reconfigure --tenantId *** --clientId *** --clientSecret ***...
FieryCat's user avatar
  • 1,949
1 vote
1 answer
142 views

Im creating a kivy popup with all available drives. The idea is to click a drive button and than have that directory open in filechooser widget. The only issue is I need to dismiss the drive popup ...
Foton's user avatar
  • 127
2 votes
2 answers
150 views

I am attempting to use Kivy to modify the example Pong game to have a main menu. It took me ages, but I finally got the menu system to work and start the game object itself in a new screen. However, ...
blindcat97's user avatar
0 votes
0 answers
40 views

Needing some assistance with getting toolchain.py: error: unrecognized arguments: --feature android.hardware.location.gps Building in WSL extension remote connection in VSCode. It seems to be freaking ...
Sixjac's user avatar
  • 349
3 votes
2 answers
1k views

I have a basic Kivy app that I have published in the Google Play Store. Today I got a warning message in Policy Status: Your app is affected by Google Play's 16 KB page size requirements To ensure ...
MECRA YAVCIN's user avatar
0 votes
1 answer
56 views

In the following code, I have a parent GridLayout (called grd here) with two children widgets (flt and slt). Each child widget has further children widgets, one of which is a drag_behavior widget, ...
Brian Ketelboeter's user avatar
0 votes
1 answer
54 views

I have a kivy project where I specified: android.add_aars = hands/hands.aar The file and folder do exist and sit next to buidozer.spec. I can also see them in the grade project copied to libs/hands....
GuySoft's user avatar
  • 1,723
1 vote
0 answers
58 views

I have been trying to use kivy to render a 3D model for an interactive app in a website but I am yet to achieve this. At first it was crashing and I have done a few changes to solve those issues up to ...
Rupert Fletcher's user avatar
1 vote
1 answer
50 views

I defined a Kivy Button and associated a method with on_touch_up. However, when I click the button, the method is called twice. This issue stops occurring if I also define on_touch_down and return ...
Cláudio Teixeira's user avatar
12 votes
8 answers
30k views

I have an kivy app and i compile it via Buildozer. My settings are: # (int) Target Android API, should be as high as possible. android.api = 34 # (int) Minimum API your APK / AAB will support. ...
MECRA YAVCIN's user avatar
0 votes
0 answers
41 views

I am having a real mare trying to get a remote control or dpad to work to scroll menus in my Kivy app converted to Android APK, No matter what I try I just can't seem to be able to get a remote ...
Nemzzy Builds's user avatar
0 votes
0 answers
28 views

I'm working on a Kivy App that's almost working, but Xcode is giving an error about one of the modules. Any advice on how to get it to properly load would be appreciated. Available orientation: ...
Sean Aldous's user avatar
0 votes
0 answers
39 views

In my kivy 2.3.1 app, pyjnius 1.6.1 and python-for-android 2024.02.21, python 3.11.16 on MacOS, the app needs to generate a random 12 byte initialization vector (iv) and pass it to java function ...
user938363's user avatar
  • 10.3k
0 votes
1 answer
141 views

In my kivy 2.3.1, buildozer 1.5.0, p4a 2024.01.21, python 3.11.16 on MacOS, there is a piece of code for secure save locally. The cipher.init() keeps throws the following error: 06-18 15:49:56.872 ...
user938363's user avatar
  • 10.3k
1 vote
1 answer
58 views

So I seem to be having an issue with Kivy , I have a video player added into one of my screens. I have setup the video player in the KV file with the code below Screen: name: "VideoPlayer&...
Nemzzy Builds's user avatar
0 votes
0 answers
25 views

My first kivy app is developed with kivy 2.3.1, python-for-android 2024.01.21, buildozer 1.5.0, android api 33, andoird idk 25b, python 3.11.12 virtual env on MacOS. The android emulator is running ...
user938363's user avatar
  • 10.3k
0 votes
1 answer
27 views

I am trying to figure out Kivy's layout system. And can't get the results I want. I am creating a single column grid of widgets. Each row is a single box layout with a image thumbnail on the right and ...
K Egan's user avatar
  • 1
0 votes
0 answers
58 views

I'm using MDTextFieldHintText inside an MDTextField, but I can't change the MDTextFieldHintText font_size when it's nested. When I use MDTextFieldHintText outside of MDTextField, the font_size works ...
brad's user avatar
  • 35
1 vote
0 answers
45 views

My problem: In this script the do_translation is working. The do_scale does not work. The scrolling and scale interfere with each other. If I change the ‘do_scroll_y’ to False the do_scale works fine, ...
sybe's user avatar
  • 53
0 votes
0 answers
44 views

Please try again later. invalid symlink at /Users/joshrhodes/Library/Developer/CoreSimulator/Devices/B0959E1D-029A-4A3D-B696-2ECFDAE92E3B/data/Library/Caches/com.apple.mobile.installd.staging/temp....
Northrnrhodes's user avatar
1 vote
0 answers
23 views

My kivy 2.3.1, buildozer 1.5.0, python-for-android 2024.01.21 in python virtualenv 3.11, on MacOS app throws error when buildozer android debug: [DEBUG]: configure: error: in `/Users/macbook/...
user938363's user avatar
  • 10.3k
0 votes
0 answers
99 views

My kivy app is being developed in python 3.12.7 venv, kivy 2.3.1, python-for-android 2024.01.21, openssl 3.0.6 & buildozer 1.5.0. Here is the requirements in buildozer.spec: requirements = python3=...
user938363's user avatar
  • 10.3k
0 votes
0 answers
33 views

when doing buildozer android debug in python 3.10.16/kivy 2.3.1/buildozer 1.5.0/pyjnius 1.6.1 on MacOS, it keeps throw http 404 when downloading openssl as python 3.10 still tried to download the ...
user938363's user avatar
  • 10.3k
0 votes
1 answer
46 views

I'm having trouble configuring my logger. My app uses libraries which use the standard python logging library. I cannot configure the Kivy Logger object to filter different log levels or modules. ...
frimann's user avatar
  • 189
1 vote
1 answer
750 views

The python version is 3.10.17, buildozer 1.5.0, kivy 2.3.1. Here is the requirements in buildozer.spec: requirements = python3=3.10,kivy,openssl=3.0.16,cryptography==42.0.5,pyjnius @ git+https://...
user938363's user avatar
  • 10.3k
0 votes
0 answers
52 views

Good day there! I am currently working on a school proyect in a MVC arquitecture where I am communicating my app with a Firestore database and, among other things, displaying the data I get from the ...
Iru Borreda Bin's user avatar
0 votes
0 answers
71 views

I am trying to build Docker image for Buildozer as explained here: https://github.com/kivy/buildozer/tree/master?tab=readme-ov-file but I am getting this error: sudo docker build --tag=kivy/buildozer ....
mans's user avatar
  • 18.4k
0 votes
0 answers
62 views

I compiled the Android app using Kivy, and in the end it still wouldn't start. I tried many ways, but in the end I got one error after another, and in the end I came to nothing. I attach the code ...
BegginerProgrammer's user avatar
0 votes
1 answer
45 views

So I'm very new to Kivy, and the point here is to have a random integer cycle through 3 random integers and change images corresponding to the integers, with a clock checking this every second. It ...
Spyro404's user avatar
0 votes
0 answers
46 views

I have an app I'm trying to make. I've successfully created an Xcode project from my Kivy project, but when it launches on a simulator device, it immediately crashes with the error: module 'subprocess'...
Sean Aldous's user avatar
0 votes
1 answer
52 views

I'm trying to get my GPS location on pydroid. I can get my location using the kivy app in this link. https://github.com/kivy/plyer/blob/master/examples/gps/main.py But when I try this code found in ...
matthator's user avatar
0 votes
0 answers
44 views

I have written code for an application that pulls data from a website and inserts it into a table in the application. The code itself ran on the computer for 45 seconds. I compiled the application, it ...
BegginerProgrammer's user avatar
0 votes
1 answer
97 views

I've been trying to create an app that uses driving navigation, but when trying to find how to get from one point to another (defined with latitude and longitude) using osmnx pathfinding, it looks ...
user23160500's user avatar
0 votes
0 answers
77 views

I'm currently working on a kivy application and im using the WSL(windows subsystem for Linux) with the Ubuntu distribution. When i try running a basic kivy app with python, i keep getting this error &...
Baba-J's user avatar
  • 1
2 votes
1 answer
47 views

I am building an app with numerous screens, each of which may have many buttons. I know how to build the app out screen by screen but was wondering if I create a parent screen class with a ...
Brian Ketelboeter's user avatar
0 votes
0 answers
29 views

In order to restrict the usage of the Firebase API token I want to add Android restrictions on the API key. However, in order for Firebase to accept the requests I need to pass the headers X-Android-...
Tobias Lindell's user avatar
0 votes
0 answers
36 views

I am tryng to create an .aab from a python kivy project, but nothing works. This is my first time making a .aab file from kivy. I am using a virtual machine Lubuntu, python 3.10, buildozer. I have ...
Super Nani's user avatar
0 votes
0 answers
26 views

Snippet of kivy code: from jnius import autoclass from jnius import cast from android import activity Activity = autoclass('android.app.Activity') PythonActivity = autoclass("org.kivy.android....
Steve95959's user avatar
0 votes
0 answers
69 views

I am trying to build an app with Kivy which takes an image and returns the super-resolved version of it. In order to do so, I am using a pre-trained super-resolution model. It is working well on my ...
cnucup's user avatar
  • 1
1 vote
1 answer
47 views

I would like to import optional GUI elements defined in separate Mod1.py/Mod2.py/etc files and add/remove these dynamically from the main GUI. The separate files that define these optional GUI ...
Eugene B's user avatar
0 votes
0 answers
68 views

I am using buildozer to compile a kivy script for android. The script requires access to external folders and so I need to use the fileprovider. I have added the appropriate information to a manifest ...
Steve95959's user avatar
0 votes
1 answer
55 views

I would like to import optional GUI elements defined in separate .py files and add/remove these dynamically from the main GUI. The optional elements are defined in a text configuration file and thus ...
Eugene B's user avatar

1
2 3 4 5
275