-
Notifications
You must be signed in to change notification settings - Fork 132
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a python native library migration guide,please. #175
Comments
Building native packages for Android is a complicated process, so rather than writing a guide, we'd be more likely to open-source our actual build system. We're not ready to do that yet, but I'll update this issue if we do, so please subscribe to it if you're interested. |
If you want to build Python libraries containing native code, you can use our package build tool, which was used to build everything in the native package repository. It supports many native build tools including Cython, pybind11, Autoconf and CMake, and handles a wide variety of cross-compilation issues. [EDIT 2022-08] The package build tool is now open-source and is available here. |
The package build tool is now open-source. See the comment above for details. |
During use, I need some python wrapper for the c language native library.
For example: opencv-contrib-python.
I tried to compile it with NDK, but only generated the java wrapper.
So I want to know how to generate python wrappers
The text was updated successfully, but these errors were encountered: