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 __name__=="__main__":
Hello2App().run()
My hello.kv file
<Label>:
text: 'Hello World!'
I use buildozer in ubuntu to compile apk. Sudo buildozer android debug deploy
do i need to apply looping like we do in pygame and Tkinter to show gui or window