While attempting to build an apk with buildozer(for a kivy project), I am running into the following(buildozer log_level is set to 2):
First of all this, which I believe is actually supposed to happen. I do have cython and everything is fine on that front.
# Install requirement jnius in virtualenv
# Run 'pip install --download-cache=/home/yerman/.buildozer/cache --target=/home/yerman/PycharmProjects/genius/.buildozer/applibs jnius'
# Cwd /home/yerman/PycharmProjects/genius/.buildozer
DEPRECATION: --download-cache has been deprecated and will be removed in the future. Pip now automatically uses and configures its cache.
Collecting jnius
 Using cached jnius-1.0.2.tar.gz
  Complete output from command python setup.py egg_info:
 Â
 Â
  You need Cython to compile Pyjnius.
 Â
 Â
  Traceback (most recent call last):
   File "<string>", line 20, in <module>
   File "/tmp/pip-build-997Av1/jnius/setup.py", line 32, in <module>
    from Cython.Distutils import build_ext
  ImportError: No module named Cython.Distutils
 Â
Which is immediately followed by this:
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-997Av1/jnius
# Command failed: pip install --download-cache=/home/yerman/.buildozer/cache --target=/home/yerman/PycharmProjects/genius/.buildozer/applibs jnius
I have tried cleaning out the buildozer cache, both for the project and globally. I have experimented also with multiple versions of cython, and even java.
So far, no good. Any help would be very welcome.