Commentaires récents

    Archives

    Catégories

    Java Native Interface for Android

    Posted by on mar 20, 2012 in Android | No Comments
    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 ...