when I tried to create, click and automatically launch apk on my device using buildozer android debug deploy run , it shows these errors:
# Check configuration tokens
I checked this in the documentation as well as on the Internet, but found nothing about it. And I'm just making a simple Hello World application:
#version.regex #__version__= '1.0' from kivy.app import App from kivy.uix.label import Label class SimpleApp(App): def build(self): return Label(text="Hello World") if __name__=="__main__": SimpleApp().run()
Thanks!
source share