In my android application, i use static loading of OpenCV library i.e
OpenCVLoader.initDebug()
it will return true when run on emulator, but return false when run on (mobile) device.
if i use
OpenCVLoader.initAsync(OpenCVLoader.OPENCV_VERSION_2_4_3, this, mLoaderCallback)
if OpenCV manager .apk alredy installed,then above code work fine in emulator and device. here i want run openCV realted app, with out intall OpenCV manager.apk.
please help me. thanks in advance.