Open smaudet opened 4 years ago
Cython does not support any -I arguments. You have hard coded a reference to an invalid build configuration into your python-for-android fork.
-I
Simply add pyzmq to your build requirements and watch it fail.
pythonforandroid/recipes/pyzmq/init.py
class PyZMQRecipe(CythonRecipe): name = 'pyzmq' version = 'master' url = 'https://github.com/zeromq/pyzmq/archive/{version}.zip' site_packages_name = 'zmq' depends = ['libzmq'] cython_args = ['-Izmq/utils', '-Izmq/backend/cython', '-Izmq/devices']
https://github.com/kivy/python-for-android/issues/1575
Potentially linked?
I commented cython_args and this worked for my app.
Cython does not support any
-I
arguments. You have hard coded a reference to an invalid build configuration into your python-for-android fork.Simply add pyzmq to your build requirements and watch it fail.
pythonforandroid/recipes/pyzmq/init.py