First of all, none of the OpenCV samples work on Nexus 6 Android 5.0. After the OpenCV manager installation prompt, I get a screen that says 'Item not found, retry'. I later setup android studio and imported opencv module and wrote a basic program that initializes OpenCV. The app crashes throwing an error mentioned in this post : OpenCV Service Intent must be explicit, Android 5.0 Lolipop . After following the suggestions, I was able to get a prompt for downloading OpenCV manager and successfully installed OpenCV manager. But when I return to the application, I see that it fails to get library path. logcat shows these messages repeatedly-
W/ContextImpl﹕ Implicit intents with startService are not safe: Intent { act=org.opencv.engine.BIND } android.content.ContextWrapper.bindService:538 org.opencv.android.AsyncServiceHelper.initOpenCV:24 org.opencv.android.OpenCVLoader.initAsync:44
D/OpenCVManager/Helper﹕ Service connection created
D/OpenCVManager/Helper﹕ Trying to get library path
W/ContextImpl﹕ Implicit intents with startService are not safe: Intent { act=org.opencv.engine.BIND } android.content.ContextWrapper.bindService:538 org.opencv.android.AsyncServiceHelper.initOpenCV:24 org.opencv.android.OpenCVLoader.initAsync:44
D/OpenCVManager/Helper﹕ Service connection created
D/OpenCVManager/Helper﹕ Trying to get library path
How do I get over this issue and start working on OpenCV for Android on Lollipop?