Using C++ Classes In Blackberry Or Convert Cpp Files To Java
I am having C++ files and library which I have used in Android using ndk and jni.It works fine in Android. But now I want to use the same files and library for Blackberry Developme
Solution 1:
Current Blackberry smartphones do not support JNI at all, so using C++ is completely out of the question on those devices. You have to use Java only.
BlackBerry PlayBook v1.0.7+, and future OS7 smartphones, will have an NDK that supports C++. Java will not be used on those devices (except in the Android player), so no JNI needed.
Post a Comment for "Using C++ Classes In Blackberry Or Convert Cpp Files To Java"