I'm using two libraries in my Android App:
- TensorFlow
- QihanOpenSDK_1.1.8.0.aar
Apparently the second one only has an armeabi version of the libuvcNative.so. As a result, I did this.
TensorFlow on the other hand does not offer a prebuilt binary for that architecture. This gave me the following error when trying to use TensorFlow:
java.lang.RuntimeException: Native TF methods not found; check that the correct native libraries are present in the APK.
To correct this, I would have to build TensorFlow for the armeabi version myself, according to this post. As I haven't done this before, I ran into a lot of problems following various instructions.
So my question: Is this the only way to go? As I would have to spend a lot of time in the build process itself, I want to make sure that there is no alternative solution.
Thanks!