I'm trying to compile the tutorial-2-mixedprocess application in android, this application comes with the sdk. But my application crashes when it tries to load mixed_sample
// Load native library after(!) OpenCV initialization
System.loadLibrary("opencv_java3");
Log.d(TAG, "Loaded the opencv"); //This line appears on the monitor
System.loadLibrary("mixed_sample"); // C-R-A-S-H z z z
I looking inside the libs directory that came with opencv-3.2.0-android-sdk.zip but libmixed_sample.so is nowhere to be found.
Where to find this file?
Is there any relation between this libfile and the opencv-manager?