Commit 1d7d22e1 authored by Maksim Shabunin's avatar Maksim Shabunin

AndroidMgr: fixed library version check

parent 33ab9ea1
......@@ -69,6 +69,9 @@ public class OpenCVEngineService extends Service {
if (diff > 0 || (diff != 0 && i == 0)) {
// requested version is greater than actual OR major version differs
return false;
} else if (diff < 0) {
// version is compatible
return true;
}
}
if (expected.length > i) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment