When I use kivy on QPython it gives segmentation fault

349 Views Asked by At

I am using QPython to run python on Android although it successfully import kivy module but it gives segmentation fault when I run it

1

There are 1 best solutions below

0
On

I had the same issue.

You just have to add these lines of code above your actual code (in your main.py file) :

#-*-coding:utf8;-*-
#qpy:2
#qpy:kivy

I hope I could help.