4
I made a very simple code using Kivy, but give this error that shows 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 to me what’s wrong?
What is the file code
base.py
?– Woss
Anderson, the code is what’s in the question.
– Nielsen Rick