How to create an object with JNI?

后端 未结 5 1615
孤独总比滥情好
孤独总比滥情好 2020-12-07 18:37

I need to implement some functions into an Android application using NDK and thus JNI.

Here\'s the C code, with my concerns, that I wrote:

#include &         


        
5条回答
  •  忘掉有多难
    2020-12-07 19:23

    In JNI you can always use the javap tool for finding method signatures. Just run javap -s com.example.ndktest.NDKTest and copy the method signatures from the output.

提交回复
热议问题