Questions tagged [buildozer]

Buildozer is a tool for creating application packages easily.

Buildozer is a tool that automates the creation of mobile applications.

It supports packaging for:

  • Android - Compilation done on only Linux or OSX
  • iOS - Compilation done on only OSX

It automates the use of:

  • python-for-android
  • kivy-for-ios
1108 questions
-1
votes
2 answers

Apk file build using buildozer closes as soon as i open it

I try to make a simple hello world app for android using python, kivy and buildozer. my hello.py file is from kivy.app import App from kivy.uix.button import Label class Hello2App(App): def build(self): return Label() if…
-2
votes
0 answers

i am trying to convert my kivy and kivymd python file into apk . My file contains video also

this is the error I tried various methods advised by youtubers but none of them worked. I only want to successfully convert my python file into apk. A big error message is shown, I am not able to solve it. How can I solve it with simple steps
-2
votes
2 answers

Code worked fine, but not the app on kivy

I am trying to create a kivy app for android device. And my code is working great on the PC. But the apk file created using buildozer is not really working on the android. It crashes before opening. But a simple Hello World Example works perfect…
-2
votes
1 answer

Please! Kivy app Buildozer work on windows but not on Android

I can run main.py in windown... but when buildozer to apk, it not running in android. Please help me <3 This is main.py from kivymd.app import MDApp from kivy.uix.screenmanager import ScreenManager, Screen from kivymd.uix.boxlayout import…
-2
votes
1 answer

Can not read proper buildozer logcat

Could you please help me to find location of error in my main.py code. Below is extract of logcat: I/python ( 6494): Traceback (most recent call last): I/python ( 6494): File "main.py", line 17, in I/python ( 6494): …
-2
votes
1 answer

Error: returned non-zero exit status 1

I am attempting to debug an app that I created using kivy. I am using buildozer and running the command buildozer osx debug. However, I am getting this error message: CalledProcessError: Command '['python', 'package_app.py', '/Users …
Ajax1234
  • 69,937
  • 8
  • 61
  • 102
-2
votes
1 answer

I can't understand how to get to work my code into kivy

I just found out recently about kivy. Python i'm also studing recently. I would like application, made into kivy, which has 2 boxes for input text and returning a label with result after clicking a button. This code must be in him: def…
-2
votes
1 answer

Does buildozer work on OSX/ios?

I've written an app that works on Linux, Windows and OSX, and Android via kivy and buildozer I've got it running now on ios using the Kivy documentation But on ios how do you use the elements that buildozer takes care of in an android build, in…
Psionman
  • 3,084
  • 1
  • 32
  • 65
-3
votes
0 answers

Ubuntu->Python->Buildozer-> buildozer -v android debug

I can't deal with this error. I don't even know what else to try to fix it. My buildozer.spec requirements =python3,kivy==master,pillow WARNING: pip is being invoked by an old script wrapper. This will fail in a future version of pip. Please see…
SSanta
  • 1
  • 1
-4
votes
1 answer

Kivy App build with Buildozer. APK crash

I am using Oracle VirtualBox running Ubuntu 16. I have been able to build apk files for a while until my latest build. My program will run and keep its functionality when run with python 2.7 on the same Virtual machine. When i install the .apk file…
JohnPaul
  • 294
  • 1
  • 4
  • 13
-4
votes
1 answer

AttributeError: 'NoneType' object has no attribute 'current'

class LoginScreen(Screen): def __init__(self,**kwargs): super(LoginScreen, self).__init__(**kwargs) print self,self.parent.current class AppScreenManager(ScreenManager): pass #Base Class class AppBaseClass(App): def…
Abhishek Bhatia
  • 9,404
  • 26
  • 87
  • 142
1 2 3
73
74