I made a very simple code using Kivy, but of the error that is showing in the image below: The code is as follows:
import kivy
kivy.require('1.0.6')
from kivy.app import App
from kivy.uix.button import Button
class MyApp(App):
def build(self):
return Button(text='Hello World')
if __name__ in ('__android__', '__main__'):
MyApp().run()
Could you explain what's wrong?