<!-- The issue tracker is a tool to address bugs. Please use the Disord community or Stack Overflow for support questions, more information at https://github.com/kivy/python-for-android#support Before opening a new issue, make sure you do the following: * check that your issue isn't already filed: https://github.com/kivy/python-for-android/issues * prepare a short, runnable example that reproduces the issue * make sure to have `log_level = 2` in your `buildozer.spec` * reproduce the problem with the latest development version (`p4a.branch = master`) * double-check that the issue is indeed a bug and not a support request * please use backticks to format code or logs --> ### Versions * Python: 3.6 * OS: ubuntu 18.04.03 * Kivy: 1.11.1 latest **develop branch** ( date: 2019.11.22 ) * Cython: My environment is [KivyCompleteVM](https://github.com/Zen-CODE/kivybits/tree/master/KivyCompleteVM), and I update the kivy repo to develop latest ### Description in my python file: ``` import cv2 ``` but got this error: ``` I/python ( 7920): import cv2 I/python ( 7920): ImportError: dlopen failed: cannot locate symbol "PyBool_Type " referenced by "cv2.so"... ``` ### buildozer.spec Command: ```sh p4a apk --private ./code --package=org.test.myapp --name "My application" --version 0.1 --arch=armeabi-v7a --bootstrap=sdl2 --requirements=opencv,numpy,websocket-client,python3,kivy,rpyc --ndk_dir /home/kivy/Android/android-ndk-r17c/ --sdk_dir /home/kivy/Android/android-sdk-28/ --android_api 27 ``` ### Logs ``` I/python ( 7920): import cv2 I/python ( 7920): ImportError: dlopen failed: cannot locate symbol "PyBool_Type " referenced by "cv2.so"... ```