Java Native Interface for Android
What ? JNI allows to use C++ code with Java, on Android for example. For what ? For few stuff : To not rewrite in Java a useful existing library. To use the same library on Android and IOS. At my mind, point 2 is essential. For many things, C++ is faster than Java. How ...

