--
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

# (int) Android SDK version to use
android.sdk = 21
I took this buildozer.spec from a older version of my project which succesfully compiled about a month ago. Does this mean that this version 21 became meanwhile obsolete?
My draft vagrant provision (automatic installation of dependencies) is as follows:
add-apt-repository ppa:kivy-team/kivy
apt-get update
apt-get -y install python-kivy
apt-get install kivy-examples
find / -iname "kivy-examples"
apt-get -y install python-pip
apt-get -y install python-setuptools
pip install buildozer
apt-get install zlib1g-dev
apt-get -y install git
pip install Cython==0.21.2
It stops at the last command, and fails to install cython. More concretely, message: fatal error: pyconfig.h: No such file or directory
Is there a conflict with Cython 0.21.2 and any of the other dependencies above?
Dirk van der Linden.
--