1
0
Fork 0
mirror of https://github.com/ArtemSBulgakov/buildozer-action.git synced 2024-08-16 10:09:52 +02:00
gh-buildozer-action/test_app/main.py

18 lines
288 B
Python
Raw Permalink Normal View History

2020-06-23 14:16:47 +02:00
"""
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()