1 | initial version |
@Alexander I had the same idea, you can do it specifying the package to make the intent explicit:
Intent intent = new Intent("org.opencv.engine.BIND");
intent.setPackage("org.opencv.engine");
if (AppContext.bindService(intent, helper.mServiceConnection,
Context.BIND_AUTO_CREATE)) {
....