Autofocus in Blackberry ported app

129 Views Asked by At

I have implemented this ocr library, Its working fine in android but when I port the app in blackberry , Auto focus is not working. Any idea ?

Thanks

1

There are 1 best solutions below

4
On

For Android you can directly compile your library using the NDK, then either write your app in Java and call your library via JNI, or write the whole app in C++ using the NDK.

I believe you are out of luck on Blackberry, for this platform you'll need to rewrite your library in Java, as neither apps or libs can be written in C++.