Reputation: 3366
Using Buildozer I get 12 times:
#error Do not use this file, it is the result of a failed Cython compilation.
And eventually:
Command failed: ./distribute.sh -m "kivy" -d "myapp"
According to the Kivy docs, I use Cython 0.21.2.
Any help would be very much appreciated!
Upvotes: 0
Views: 176
Reputation: 14834
Looks like you have Kivy 1.8.0 installed, and you're building Kivy 1.9.0 with buildozer. You will need to uninstall or upgrade your system Kivy. This is a bug in Cython, because it is using the system-installed pxd
s before the local directory pxd
s.
Upvotes: 1