mirror of
https://github.com/ArtemSBulgakov/buildozer-action.git
synced 2024-08-16 10:09:52 +02:00
17 lines
288 B
Python
17 lines
288 B
Python
"""
|
|
Simple Hello World app to test Buildozer Action.
|
|
|
|
It builds Kivy app with file main.kv.
|
|
"""
|
|
|
|
from kivy.app import App
|
|
from kivy.lang import Builder
|
|
|
|
|
|
class MainApp(App):
|
|
def build(self):
|
|
return Builder.load_file("main.kv")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
MainApp().run()
|